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

TileLayoutControl.TileClick Event

Occurs after a tile has been clicked.

Namespace: DevExpress.Xpf.LayoutControl

Assembly: DevExpress.Xpf.LayoutControl.v18.2.dll

Declaration

public event EventHandler<TileClickEventArgs> TileClick

Event Data

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

Property Description
Tile Gets the tile that has been clicked.

Remarks

Handle the TileClick event to perform the required action each time the end-user clicks a tile. The processed tile is returned by the event parameter’s TileClickEventArgs.Tile property.

Individual tiles provide the Tile.Click event, allowing you to perform the action when the corresponding tile is clicked.

See Also