Customize Built-in Animations
28 May 20211 minute to read
Enable or Disable built-in animation
TileViewControl allows to enable or disable the built-in animation by the help of EnableAnimation
property. By default, EnableAnimation value as true. To disable TileViewControl animation, set EnableAnimation property of TileViewControl as false.
<syncfusion:TileViewControl x:Name="tileview" EnableAnimation="False"/>
tileview.EnableAnimation = false;
Animation Duration
TileViewControl
allows to customize the animation speed by the help of AnimationDuration
property. By default, AnimationDuration
value is 700 milliseconds.
<syncfusion:TileViewControl x:Name="tileview" AnimationDuration="00:00:00.700" />
tileview.AnimationDuration = new TimeSpan(0, 0, 0, 0, 700);