IsBusy in WPF Busy Indicator (SfBusyIndicator)

4 May 20211 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;

IsBusy

Busy Indicator

NOTE

View sample in GitHub