Skip to main content

NavBarSelectedLinkChangedEventArgs(NavBarGroup, NavBarItemLink) Constructor

Creates an instance of the NavBarSelectedLinkChangedEventArgs class.

Namespace: DevExpress.XtraNavBar.ViewInfo

Assembly: DevExpress.XtraNavBar.v23.2.dll

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

Declaration

public NavBarSelectedLinkChangedEventArgs(
    NavBarGroup group,
    NavBarItemLink link
)

Parameters

Name Type Description
group NavBarGroup

A NavBarGroup object representing the group whose link has been selected. This value is assigned to the NavBarSelectedLinkChangedEventArgs.Group property.

link NavBarItemLink

A NavBarItemLink object representing the link which has been selected. This value is assigned to the NavBarSelectedLinkChangedEventArgs.Link property.

Remarks

The constructor assigns parameter values to properties of a newly created object.

NavBarSelectedLinkChangedEventArgs objects are not designed to be created directly from your code. An instance of this class is created automatically each time the NavBarControl.SelectedLinkChanged event fires.

See Also