Skip to main content

Tile.AnimationInterval Property

Gets or sets the amount of time between tile flips. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Layout

Assembly: DevExpress.UI.Xaml.Layout.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public TimeSpan AnimationInterval { get; set; }

Property Value

Type Description
TimeSpan

A TimeSpan structure that specifies the amount of time between tile flips. The default is 5 seconds.

Remarks

If the tile’s back side content is specified using the Tile.BackContent property, the tile automatically flips from side to side. The AnimationInterval property allows you to set the amount of time between tile flips.

The code snippet below show how to set the flip interval to 10 seconds.

<Layout:HubTile Content="Tile" BackContent="Back" AnimationInterval="0:0:10"/>
See Also