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

WindowsUIView.TileClick Event

Occurs when any Tile within the current WindowsUIView is clicked.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v19.1.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the TileClick event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also