BackstageViewControl.ItemClick Event
Fires after any of the BackstageViewControl‘s items has been clicked with the mouse (the mouse button has been pressed and then released).
Namespace: DevExpress.XtraBars.Ribbon
Assembly: DevExpress.XtraBars.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
Event Data
The ItemClick event's data class is BackstageViewItemEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Item | Gets the currently processed item. |
Remarks
You can handle the ItemClick event to respond to clicking items within the BackstageViewControl. To identify the clicked item, use the event’s Item parameter.
To respond to clicking individual items, you can also handle the BackstageViewButtonItem.ItemClick event.
You can perform custom actions on pressing a BackstageViewControl‘s items (when the mouse button is pressed against the item but not yet released). This can be accomplished via the BackstageViewControl.ItemPressed or BackstageViewItem.ItemPressed event.