Imports System.Diagnostics Imports Infragistics.Win Imports Infragistics.Win.UltraWinExplorerBar Private Sub Button35_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button35.Click ' Put the group with key 'Foo' into edit mode. If (Me.ultraExplorerBar1.Groups.Exists("Foo")) Then Me.ultraExplorerBar1.Groups("Foo").Rename() End If End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinExplorerBar; private void button35_Click(object sender, System.EventArgs e) { // Put the group with key 'Foo' into edit mode. if (this.ultraExplorerBar1.Groups.Exists("Foo")) this.ultraExplorerBar1.Groups["Foo"].Rename(); }