Skip to main content

WindowsUIView.TileClick Event

Occurs when any Tile within the current WindowsUIView is clicked.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public event TileClickEventHandler TileClick

Event Data

The TileClick event's data class is DevExpress.XtraBars.Docking2010.Views.WindowsUI.TileClickEventArgs.

Remarks

Handle the TileClick event to perform common actions when any Tile within a WindowsUI View is clicked. You can also respond to an end-user clicking a Tile within a TileContainer or an individual Tile via the TileContainer.Click or BaseTile.Click events respectively.

Set the TileClickEventArgs.Handled property to true to mark the event as already handled and suppress the click event.

See Also