[]
        
(Showing Draft Content)

Animation

Calendar control supports animation during navigation, by default. However, you can choose not to animate the calendar control by setting IsAnimated property of the C1Calendar class to false. The following GIFs demonstrate how the Calendar control appears with and without animation.

Calendar with animation Calendar without animation
MAUI Calendar with animation MAUI Calendar without animation

The following code demonstrates how to use the IsAnimated property.

xml

<c1:C1Calendar x:Name="calendar" IsAnimated="False"/>

csharp

calendar.IsAnimated = false;