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

NavBarControl.HotTrackedLinkChanged Event

Fires when the mouse pointer either enters or leaves a link area.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v24.2.dll

NuGet Package: DevExpress.Win

#Declaration

public event NavBarLinkEventHandler HotTrackedLinkChanged

#Event Data

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

Property Description
Link Gets the link for which the event is raised.

#Remarks

Write a HotTrackedLinkChanged event handler to perform specific actions each time a link’s hot-tracked state is changed. You can use this to update the hottracked link. The link can be accessed via the event parameter.

Pass the mouse pointer position to the NavBarControl.CalcHitInfo method to determine the control section on which the mouse pointer is resting.

See Also