AnimationTypes in WPF Busy Indicator (SfBusyIndicator)

24 Jun 20212 minutes 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 for Fluent animation type.

<Grid Background="CornflowerBlue">

    <Notification:SfBusyIndicator AnimationType="Flight"/>

</Grid>
SfBusyIndicator busyIndicator = new SfBusyIndicator();

busyIndicator.AnimationType = AnimationTypes.Flight;

ArrowTrack

Busy Indicator with ArrowTrack type animation

Ball

Busy Indicator with Ball type animation

Battery

Busy Indicator with Battery type animation

Box

Busy Indicator with Box type animation

Delete

Busy Indicator with Delete type animation

DoubleCircle

Busy Indicator with DoubleCircle type animation

Drop

Busy Indicator with Drop type animation

ECG

Busy Indicator with ECG type animation

Flight

Busy Indicator with Flight type animation

Flower

Busy Indicator with Flower type animation

Gear

Busy Indicator with Gear type animation

Globe

Busy Indicator with Globe type animation

GPS

Busy Indicator with GPS type animation

HorizontalPulsingBox

Busy Indicator with HorizontalPulsingBox type animation

Liquid

Busy Indicator with Liquid type animation

Pen

Busy Indicator with Pen type animation

Print

Busy Indicator with Print type animation

Rain

Busy Indicator with Rain type animation

Rectangle

Busy Indicator with Rectangle type animation

Rotation

Busy Indicator with Rotation type animation

SingleCircle

Busy Indicator with SingleCircle type animation

SliceBox

Busy Indicator with SliceBox type animation

SlicedCircle

Busy Indicator with SlicedCircle type animation

Snow

Busy Indicator with Snow type animation

Sunny

Busy Indicator with Sunny type animation

Temperature

Busy Indicator with Temperature type animation

Umbrella

Busy Indicator with Umbrella type animation

Windmill

Busy Indicator with Windmill type animation

Cupertino

Busy Indicator with Cupertino type animation

DotCircle

Busy Indicator with DotCircle type animation

BarChart

Busy Indicator with BarChart type animation

Clock

Busy Indicator with Clock type animation

DoubleRing

Busy Indicator with DoubleRing type animation

DualRing

Busy Indicator with DualRing type animation

Ripple

Busy Indicator with Ripple type animation

Message

Busy Indicator with Message type animation

Message

Busy Indicator with Fluent type animation

NOTE

View sample in GitHub