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

Fires immediately after a link has been pressed.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v24.2.dll

NuGet Package: DevExpress.Win

#Declaration

public event NavBarLinkEventHandler LinkPressed

#Event Data

The LinkPressed 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 LinkPressed event handler to perform specific actions each time a link is pressed. This event fires right after the left mouse button has been clicked if the mouse pointer is over a link. The LinkPressed 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.LinkClicked event to perform specific actions each time a link is clicked.

See Also