Back to Devexpress

BackstageViewControl.ItemClick Event

windowsforms-devexpress-dot-xtrabars-dot-ribbon-dot-backstageviewcontrol-90911d48.md

latest2.7 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DXCategory("Action")]
public event BackstageViewItemEventHandler ItemClick
vb
<DXCategory("Action")>
Public Event ItemClick As BackstageViewItemEventHandler

Event Data

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

PropertyDescription
ItemGets 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.

See Also

ItemClick

BackstageViewControl.ItemPressed

BackstageViewItem.ItemPressed

BackstageViewControl Class

BackstageViewControl Members

DevExpress.XtraBars.Ribbon Namespace