maui-devexpress-dot-maui-dot-controls-dot-shimmerview-220ef9f0.md
Gets or sets whether shimmer animation is in progress. This is a bindable property.
Namespace : DevExpress.Maui.Controls
Assembly : DevExpress.Maui.Controls.dll
NuGet Package : DevExpress.Maui.Controls
public bool IsLoading { get; set; }
| Type | Description |
|---|---|
| Boolean |
true to show a skeleton view with shimmer effects; otherwise, false.
|
Use the LoadingView property to specify a custom layout for the skeleton view.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the IsLoading property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
maui-generate-data-bound-report/CS/MauiReportingApp/MainPage.xaml#L11
<Grid>
<dxc:ShimmerView IsLoading="True" x:Name="loadingShimmer">
<dxc:ShimmerView.LoadingView>
maui-generate-data-bound-report/CS/MauiReportingApp/MainPage.xaml.cs#L29
pdfViewer.DocumentSource = PdfDocumentSource.FromFile(resultFile);
loadingShimmer.IsLoading = false;
}
See Also