Animation Types in WPF SfBusyIndicator
18 Nov 20181 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
AnimationSpeedproperty is not applicable forFluentanimation 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