windowsforms-devexpress-dot-xtranavbar-dot-navbarcontrol-3700a00c.md
Fires immediately after a link has been clicked.
Namespace : DevExpress.XtraNavBar
Assembly : DevExpress.XtraNavBar.v25.2.dll
NuGet Package : DevExpress.Win
public event NavBarLinkEventHandler LinkClicked
Public Event LinkClicked As NavBarLinkEventHandler
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. |
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