Skip to main content
A newer version of this page is available. .

TileControl.SelectedItemChanged Event

Fires when a tile item selection occurs for the first time or item selection jumps from one TileItem to another.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Behavior")]
public event TileItemClickEventHandler SelectedItemChanged

Event Data

The SelectedItemChanged event's data class is TileItemEventArgs. The following properties provide information specific to this event:

Property Description
Item Gets or sets a TileItem that caused firing a related event.

Remarks

You can enable the tile items selection feature by setting the TileControl.AllowSelectedItem property to true. Selected tile items act as radio-buttons. The TileControl.SelectedItem property sets the currently selected tile item.

Changing a selected item within a TileControl fires the SelectedItemChanged event. The newly selected tile item can be obtained via the TileItemEventArgs.Item property.

See Also