AnimationType in WinUI BusyIndicator

27 Sep 20221 minute to read

The AnimationType property for the SfBusyIndicator control allows the users to set one of the animations from the built-in animations. The different types of animations are DottedCircularFluent, DottedCircle, DottedLinear, DoubleCircle, LinearBox, LinearOscillatingBox, and SingleCircle.

<notification:SfBusyIndicator IsActive="True"
    AnimationType="DottedCircle"
    BusyContent="Loading">
</syncfusion:SfRating>
SfBusyIndicator busyIndicator = new SfBusyIndicator();
busyIndicator.IsActive = true;
busyIndicator.AnimationType = BusyIndicatorAnimationType.DottedCircle;
busyIndicator.Content = "Loading";

The following gif image contains the types of animation in BusyIndicator.

WinUI BusyIndicator control with AnimationTypes