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 forFluent
animation type.
<Grid Background="CornflowerBlue">
<Notification:SfBusyIndicator AnimationType="Flight"/>
</Grid>
SfBusyIndicator busyIndicator = new SfBusyIndicator();
busyIndicator.AnimationType = AnimationTypes.Flight;
Busy Indicator with ArrowTrack type animation
Busy Indicator with Ball type animation
Busy Indicator with Battery type animation
Busy Indicator with Box type animation
Busy Indicator with Delete type animation
Busy Indicator with DoubleCircle type animation
Busy Indicator with Drop type animation
Busy Indicator with ECG type animation
Busy Indicator with Flight type animation
Busy Indicator with Flower type animation
Busy Indicator with Gear type animation
Busy Indicator with Globe type animation
Busy Indicator with GPS type animation
Busy Indicator with HorizontalPulsingBox type animation
Busy Indicator with Liquid type animation
Busy Indicator with Pen type animation
Busy Indicator with Print type animation
Busy Indicator with Rain type animation
Busy Indicator with Rectangle type animation
Busy Indicator with Rotation type animation
Busy Indicator with SingleCircle type animation
Busy Indicator with SliceBox type animation
Busy Indicator with SlicedCircle type animation
Busy Indicator with Snow type animation
Busy Indicator with Sunny type animation
Busy Indicator with Temperature type animation
Busy Indicator with Umbrella type animation
Busy Indicator with Windmill type animation
Busy Indicator with Cupertino type animation
Busy Indicator with DotCircle type animation
Busy Indicator with BarChart type animation
Busy Indicator with Clock type animation
Busy Indicator with DoubleRing type animation
Busy Indicator with DualRing type animation
Busy Indicator with Ripple type animation
Busy Indicator with Message type animation
Busy Indicator with Fluent type animation
NOTE
View sample in GitHub