AnimationTypes in WPF Busy Indicator (SfBusyIndicator)
17 Jul 20231 minute to read
The AnimationTypes property for the SfBusyIndicator allows the user to set one of the animations from the built-in animations as the busy indicator.
NOTE
AnimationSpeed
property is not applicable forFluent
animation type.
<Grid Background="CornflowerBlue">
<Notification:SfBusyIndicator AnimationType="Flight"/>
</Grid>
SfBusyIndicator busyIndicator = new SfBusyIndicator();
busyIndicator.AnimationType = AnimationTypes.Flight;
The following gif image contains the types of animation in BusyIndicator.
NOTE
View sample in GitHub