Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TileBar.DropDownShowing Event

Fires when a tile’s dropdown button is clicked.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public event TileBarDropDownShowingEventHandler DropDownShowing

#Event Data

The DropDownShowing event's data class is TileBarDropDownShowingEventArgs. The following properties provide information specific to this event:

Property Description
Cancel Gets or sets a value indicating whether the event should be canceled. Inherited from CancelEventArgs.
DropDownContainer Gets or sets the dropdown control associated with the current tile.
Item Gets or sets the tile whose dropdown button has been clicked.

#Remarks

A tile can be associated with a dropdown control via the TileBarItem.DropDownControl property. Once a control is assigned to the tile, the tile displays a dropdown button, whose visibility can be modified with the TileBarItem.ShowDropDownButton property. You can set the TileBarItem.ShowDropDownButton property to true to forcibly display the dropdown button, even if no dropdown control is assigned to the tile.

The DropDownShowing event fires when an end-user clicks the tile’s dropdown button. You can handle this event for the following purposes:

See Also