Make Busy Animation Idle
17 Jan 20251 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