Skip to main content

TileBase.IsChecked Property

Gets whether the Tile is actually checked. 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 IsChecked { get; }

Property Value

Type Description
Boolean

true, if the Tile is checked; otherwise, false.

Remarks

If the TileBase.AllowCheck property is set to True, the Tile can be displayed in the checked state (see TileBase.Checked). If the TileBase.AllowCheck property is set to Default or False, the Tile is not displayed checked even if the TileBase.Checked property equals true. The IsChecked property returns whether the Tile is actually displayed in the checked state.

When the IsChecked property value changes, the TileBase.CheckedChanged event is raised.

See Also