# Animation

## Content



Calendar control supports animation during navigation, by default. However, you can choose not to animate the calendar control by setting [IsAnimated](/componentone/api/winui/online-winui/dotnet-api/C1.WinUI.Calendar/C1.WinUI.Calendar.C1Calendar.IsAnimated.html) property of the [C1Calendar](/componentone/api/winui/online-winui/dotnet-api/C1.WinUI.Calendar/C1.WinUI.Calendar.C1Calendar.html) class to **False**. The following GIFs demonstrate how the Calendar control appears with and without any animation.

|   **Calendar with animation**   |   **Calendar without animation**   |
| --- | --- |
|   ![](https://cdn.mescius.io/document-site-files/images/2d49eac2-0942-4770-99ef-52b14e6815bd/images/calendar-animation.gif)   |   ![](https://cdn.mescius.io/document-site-files/images/2d49eac2-0942-4770-99ef-52b14e6815bd/images/calendar-without-animation.gif)   |

The following code demonstrates how to use the **IsAnimated** property.

```xml
<calendar:C1Calendar x:Name="calendar" IsAnimated="False" Background="LavenderBlush" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,0,0,30" ></calendar:C1Calendar>
```