Animation Types in WPF Busy Indicator
18 Nov 20181 minute to read
The AnimationTypes property for the busy indicator allows the user to set one of the animations from the built-in animations.
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.

View sample in GitHub