Back to Devexpress

ShimmerView.IsLoading Property

maui-devexpress-dot-maui-dot-controls-dot-shimmerview-220ef9f0.md

latest2.2 KB
Original Source

ShimmerView.IsLoading Property

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

Declaration

csharp
public bool IsLoading { get; set; }

Property Value

TypeDescription
Boolean

true to show a skeleton view with shimmer effects; otherwise, false.

|

Remarks

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

xml
<Grid>
    <dxc:ShimmerView IsLoading="True" x:Name="loadingShimmer">
        <dxc:ShimmerView.LoadingView>

maui-generate-data-bound-report/CS/MauiReportingApp/MainPage.xaml.cs#L29

csharp
pdfViewer.DocumentSource = PdfDocumentSource.FromFile(resultFile);
    loadingShimmer.IsLoading = false;
}

See Also

ShimmerView Class

ShimmerView Members

DevExpress.Maui.Controls Namespace