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.

AnimationSpeed property is not applicable for Fluent 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.

AnimationTypes

View sample in GitHub