Skip to main content

TileLayoutControl.TileClick Event

Occurs after a tile has been clicked.

Namespace: DevExpress.Xpf.LayoutControl

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

#Declaration

public event EventHandler<TileClickEventArgs> TileClick

#Event Data

The TileClick event's handler receives an argument of the TileClickEventArgs type. 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