wpf-devexpress-dot-xpf-dot-navbar-6c23c6a3.md
Represents a collection of items within a group.
Namespace : DevExpress.Xpf.NavBar
Assembly : DevExpress.Xpf.NavBar.v25.2.dll
NuGet Package : DevExpress.Wpf.NavBar
public class NavBarItemCollection :
ObservableCollection<object>
Public Class NavBarItemCollection
Inherits ObservableCollection(Of Object)
The following members return NavBarItemCollection objects:
Each group within a navbar control holds its items within a collection represented by an instance of the NavBarItemCollection class, and can be accessed via the NavBarGroup.Items property. The properties and methods exposed by the NavBarItemCollection class can be used to perform common collection operations, such as adding new or deleting existing items. Each item of the collection is represented by a NavBarItem object. Individual items can be accessed using indexer notation.
To learn more, see the Items topic.
Object Collection<Object> ObservableCollection<Object> NavBarItemCollection
See Also