Having trouble getting help?
Contact Support
Contact Support
IsBusy in WPF Busy Indicator (SfBusyIndicator)
6 Feb 20251 minute to read
The IsBusy property in the BusyIndicator control is used to determine whether an animation needs to be executed or not.
<Grid Background="CornflowerBlue">
<Navigation:SfBusyIndicator IsBusy="True"/>
</Grid>
SfBusyIndicator busyIndicator = new SfBusyIndicator();
busyIndicator.IsBusy = true;
Busy Indicator
NOTE
View sample in GitHub