TileLayoutControl.TileClick Event
Occurs after a tile has been clicked.
Namespace: DevExpress.Xpf.LayoutControl
Assembly: DevExpress.Xpf.LayoutControl.v24.1.dll
NuGet Package: DevExpress.Wpf.LayoutControl
Declaration
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