Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar
PrivateSub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button7.Click
' Count the total number of items in all Groups.
Dim totalItems AsInteger = 0
DimgroupAs UltraExplorerBarGroup
ForEachgroupInMe.ultraExplorerBar1.Groups
totalItems += group.Items.Count
NextEnd Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;
privatevoid button7_Click(object sender, System.EventArgs e)
{
// Count the total number of items in all Groups.
int totalItems = 0;
foreach(UltraExplorerBarGroup groupinthis.ultraExplorerBar1.Groups)
{
totalItems += group.Items.Count;
}
}