Skip to main content

OfficeNavigationBar.NavigationClient Property

Gets or sets the NavBarControl associated with the current OfficeNavigationBar. This is a dependency property.

Namespace: DevExpress.Xpf.Navigation

Assembly: DevExpress.Xpf.Controls.v23.2.dll

NuGet Package: DevExpress.Wpf.Controls

Declaration

public INavigatorClient NavigationClient { get; set; }

Property Value

Type Description
DevExpress.Xpf.Core.INavigatorClient

An DevExpress.Xpf.Core.INavigatorClient object (NavBarControl) that is associated with the current OfficeNavigationBar.

Remarks

The OfficeNavigationBar control can be integrated with a NavBarControl or an AccordionControl. When you assign a NavBarControl or AccordionControl to the NavigationClient property, the navigation control’s groups are obtained and presented as items in the current OfficeNavigationBar. At runtime, when an end-user clicks any of these items, a corresponding group is automatically activated in the bound navigation control. For the NavBarControl, group activation is only noticeable when the NavBarControl is painted using the NavigationPaneView or SideBarView. For the AccordionControl, when its AccordionControl.ViewMode property is set to AccordionViewMode.NavigationPane.

Note

In this integration mode, do not manually specify items via the Items or ItemsSource property.

See Also