Skip to main content

NavBarControl.HotTrackedLinkChanged Event

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

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v23.2.dll

NuGet Packages: DevExpress.Win, DevExpress.Win.Navigation

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