Skip to main content

TileBase.AllowSelection Property

Gets or sets whether the Tile can be displayed in the selected 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 AllowSelection { get; set; }

Property Value

Type Description
DefaultBoolean

A DefaultBoolean enumeration value that specifies whether the Tile can be displayed in the selected 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 AllowSelection property is set to Default or False, the Tile cannot be displayed in the selected state (see TileBase.Selected). Set the AllowSelection property to True to enable the selected state.

See Also