Style の 1 – Listbar および 2 – Toolbox の場合は、SelectedGroup を UltraExplorerBarItem の UltraExplorerBarGroup に設定するか、または必要に応じて ActiveGroup の項目領域をスクロールすることで、UltraExplorerBarItem を表示します。
Style が"0 - ExplorerBar"および"4 - VisualStudio2005Toolbox"の場合は、Group を展開し、必要に応じてコントロールのメイン領域をスクロールすることで、UltraExplorerBarItem を表示します。
Imports System.Diagnostics Imports Infragistics.Win Imports Infragistics.Win.UltraWinExplorerBar Private Sub Button43_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button43.Click ' Find the first Item whose Key starts with the characters 'Options_' and make sure it is in view. Dim group As UltraExplorerBarGroup For Each group In Me.ultraExplorerBar1.Groups Dim item As UltraExplorerBarItem For Each item In group.Items If (item.Key.StartsWith("Options_") = True) Then item.EnsureItemInView() Exit For End If Next Next End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinExplorerBar; private void button43_Click(object sender, System.EventArgs e) { // Find the first Item whose Key starts with the characters 'Options_' and make sure it is in view. foreach(UltraExplorerBarGroup group in this.ultraExplorerBar1.Groups) { foreach(UltraExplorerBarItem item in group.Items) { if (item.Key.StartsWith("Options_") == true) { item.EnsureItemInView(); break; } } } }