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

NavBarGroupCollection Class

Represents a collection of groups within the navbar control.

Namespace: DevExpress.Xpf.NavBar

Assembly: DevExpress.Xpf.NavBar.v24.2.dll

NuGet Package: DevExpress.Wpf.NavBar

#Declaration

public class NavBarGroupCollection :
    ObservableCollection<NavBarGroup>

The following members return NavBarGroupCollection objects:

#Remarks

A navbar control holds its groups within a collection represented by an instance of the NavBarGroupCollection class, and can be accessed via the NavBarControl.Groups property. The properties and methods exposed by the NavBarGroupCollection class can be used to perform common collection operations such as adding new or deleting existing groups. Each item of the collection is represented by a NavBarGroup object. Individual groups can be accessed using indexer notation.

To learn more, see the Groups topic.

See Also