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.LinkClicked Event

Fires immediately after a link has been clicked.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v24.2.dll

NuGet Package: DevExpress.Win

#Declaration

public event NavBarLinkEventHandler LinkClicked

#Event Data

The LinkClicked 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 LinkClicked event handler to perform specific actions each time a user clicks a link. Note that this event fires immediately after the left mouse button is released. If the button is released when the mouse pointer is not over a link, the event doesn’t fire. The LinkClicked event fires for disabled links only if such links respond to user clicks in the currently applied paint style.

You can also use the NavBarControl.LinkPressed event to perform specific actions each time a link is pressed.

See Also