Skip to main content

TileBase.IsSelected Property

Gets whether the Tile is actually selected. 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 bool IsSelected { get; }

Property Value

Type Description
Boolean

true, if the Tile is actually selected; otherwise, false.

Remarks

If the TileBase.AllowSelection property is set to True, the Tile can be selected (see TileBase.Selected). If the TileBase.AllowSelection property is set to Default or False, the Tile is not displayed selected even if the TileBase.Selected property equals True. The IsSelected property returns whether the Tile is actually displayed in the selected state.

When the IsSelected property value changes, the TileBase.SelectionChanged event is raised.

See Also