Skip to main content
A newer version of this page is available. .

NavBarItemCollection Class

Represents a collection of items within a group.

Namespace: DevExpress.Xpf.NavBar

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

Declaration

public class NavBarItemCollection :
    ObservableCollection<object>

The following members return NavBarItemCollection objects:

Remarks

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.

Inheritance

See Also