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

TileLayoutControl.TileClick Event

Occurs after a tile has been clicked.

Namespace: DevExpress.Xpf.LayoutControl

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

NuGet Package: DevExpress.Wpf.LayoutControl

#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