Skip to main content

BackstageViewControl.HighlightedItemChanged Event

Fires when an item is highlighted and when item highlighting is cleared.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Property Changed")]
public event BackstageViewItemEventHandler HighlightedItemChanged

Event Data

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

Property Description
Item Gets the currently processed item.

Remarks

When hovering over any item with the mouse, the item is automatically highlighted. The HighlightedItemChanged event fires as a result, with the Item parameter referring to the currently highlighted item.

The HighlightedItemChanged event also fires when item highlighting is cleared as a result of moving the mouse cursor outside the item’s visual bounds. In this case, the event’s Item parameter is set to null.

See Also