Make Busy Animation Idle

4 Aug 20161 minute to read

SfBusyIndicator control provides support to determine whether an animation needs to be executed or not. Setting the IsBusy property to false will stop the animation and removes the control from view.

SfBusyIndicator busyIndicator = new SfBusyIndicator(this);
	busyIndicator.AnimationType=AnimationTypes.SingleCircle;
	busyIndicator.IsBusy=true;

BusyIndicator