Skip to main content

WindowsUIView.TilePress Event

Occurs when any Tile within the WindowsUIView is pressed.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public event TileEventHandler TilePress

Event Data

The TilePress event's data class is DevExpress.XtraBars.Docking2010.Views.WindowsUI.TileEventArgs.

Remarks

The event fires immediately after an end-user clicks a Tile within the WindowsUIView. You can handle it to perform specific actions which occur if a Tile is pressed for some length of time. When the Tile is eventually released, the WindowsUIView.TileClick event occurs.

You can also handle the BaseTile.Press and TileContainer.Press events to respond to an end-user clicking a specific Tile or a Tile within a specific TileContainer respectively.

See Also