Imports System.Diagnostics Imports Infragistics.Win Imports Infragistics.Win.UltraWinExplorerBar Private Sub Button45_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button45.Click ' Put the first item in the first group into edit mode. If (Me.ultraExplorerBar1.Groups.Count > 0 AndAlso Me.ultraExplorerBar1.Groups(0).Items.Count > 0) Then Me.ultraExplorerBar1.Groups(0).Items(0).Rename() End If End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinExplorerBar; private void button45_Click(object sender, System.EventArgs e) { // Put the first item in the first group into edit mode. if (this.ultraExplorerBar1.Groups.Count > 0 && this.ultraExplorerBar1.Groups[0].Items.Count > 0) { this.ultraExplorerBar1.Groups[0].Items[0].Rename(); } }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2