Skip to main content

NavBarControl.LinkPressed Event

Fires immediately after a link has been pressed.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v23.2.dll

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

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