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

BaseTile.Click Event

Occurs when an end-user clicks the current Tile.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public event TileClickEventHandler Click

Event Data

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

Remarks

Handle the Click event to respond to an end-user clicking the specific Tile at runtime. You can also perform global actions common to all Tiles within an individual TileContainer or the entire WindowsUIView when clicked. Accomplish this by handling the TileContainer.Click or WindowsUIView.TileClick events respectively.

When an end-user clicks a Tile, the BaseTile.Press event occurs immediately. In turn, the Click event is fired only after the clicked Tile is released.

See Also