<ig:XamBusyIndicator Name="BusyIndicator" IsBusy="True" DisplayAfter="0:0:05" />
This topic explains how to configure the delay before displaying the xamBusyIndicator™ control.
The following topics are prerequisites to understanding this topic:
This topic contains the following sections:
Use the XamBusyIndicator DisplayAfter property to set a TimeSpan
delay in displaying the xamBusyIndicator control.
By default, the initial value of the DisplayAfter
property is 1 millisecond.
The following table maps the desired configuration to the property settings that manage it.
Following is the code that implements this example.
In XAML:
<ig:XamBusyIndicator Name="BusyIndicator" IsBusy="True" DisplayAfter="0:0:05" />
In C#:
BusyIndicator.DisplayAfter = TimeSpan.FromSeconds(5);
In Visual Basic:
BusyIndicator.DisplayAfter = TimeSpan.FromSeconds(5)
The following topics provide additional information related to this topic.