Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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