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

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.v24.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