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

BackstageViewControl.HighlightedItemChanged Event

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

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v24.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