Skip to main content

TileBase.AllowCheck Property

Gets or sets whether the Tile can be displayed in the checked state. 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 DefaultBoolean AllowCheck { get; set; }

Property Value

Type Description
DefaultBoolean

A DefaultBoolean enumeration value that specifies whether the Tile can be displayed in the checked state. The default is Default.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by a control’s current setting. The default value is automatically set for a control if an end-user doesn’t specify a value.

Remarks

If the AllowCheck property is set to Default or False, the Tile cannot be displayed in the checked state (see TileBase.Checked). Set the AllowCheck property to True to enable the checked state.

See Also