Having trouble getting help?
Contact Support
Contact Support
Make Busy Animation Idle in .NET MAUI Busy Indicator (SfBusyIndicator)
Make Busy Animation Idle in .NET MAUI Busy Indicator
.NET MAUI Busy Indicator control provides support to determine whether an animation needs to be executed or not. Setting the IsRunning property to false will stop the animation and removes the control from view.
<core:SfBusyIndicator x:Name="busyindicator"
AnimationType="CircularMaterial"
IsRunning="false" />
SfBusyIndicator busyIndicator = new SfBusyIndicator()
{
AnimationType = AnimationType.CircularMaterial,
IsRunning = "false"
};
NOTE
The default value is false.