This topic explains how to display the xamBusyIndicator™ control.
The following topics are prerequisites to understanding this topic:
This topic contains the following sections:
Use the XamBusyIndicator IsBusy property to display the xamBusyIndicator control.
By default, the initial value of the IsBusy property is False.
Use the IsIndicatorVisible property to track if the xamBusyIndicator content is actually visible. This property is read-only.
The IsIndicatorVisible property is useful in some cases – for example when IsBusy is set to True and DisplayAfter is set to some interval. In this scenario, the xamBusyIndicator content is not visible, until the interval has elapsed. After that, the IsIndicatorVisible property is internally set to True.
The following table maps the desired behavior to the property settings that manage it.
The screenshot below demonstrates how the xamBusyIndicator looks as a result of the following settings:
Following is the code that implements this example.
In XAML:
<ig:XamBusyIndicator IsBusy="True" />
The following topics provide additional information related to this topic.