Tile.AnimationInterval Property
In This Article
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
#Property Value
Type | Description |
---|---|
Time |
A Time |
#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