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

NavBarGroup.ItemLinks Property

Gets an object containing the collection of links which belong to the group.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v19.1.dll

Declaration

Property Value

Type Description
NavLinkCollection

A NavLinkCollection object containing the collection of group links.

Remarks

NavBarControl hold collections of groups and items. These are represented by its NavBarControl.Groups and NavBarControl.Items properties respectively. To display an item within a group, a link between them must be created. The collection of control links is available via the ItemlLinks property. This property returns a NavLinkCollection object whose methods can be used to manage links within the collection (add, delete, etc.).

Example

The following sample code demonstrates how to iterate through groups and item links. The group collection is accessed via the NavBarControl.Groups property. Links are accessed via the group’s NavBarGroup.ItemLinks property.

using DevExpress.XtraNavBar;
//...
for (int i = 0; i < navBarControl1.Groups.Count; i++) {
   NavBarGroup currGroup = navBarControl1.Groups[i];
   // perform some operations on a group here
   //...
   for (int j = 0; j < currGroup.ItemLinks.Count; j++) {
      NavBarItemLink currLink = currGroup.ItemLinks[j];
      // perform some operations on a link here
      //...
   }
}

The following code snippets (auto-collected from DevExpress Examples) contain references to the ItemLinks property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also