Style が「1 - Listbar」および「2 - Toolbox」の場合は、SelectedGroup をこの UltraExplorerBarGroup に設定することで、UltraExplorerBarGroup を表示します。
Style が「0 - ExplorerBar」の場合は、必要に応じてコントロールのメイン領域をスクロールすることで、UltraExplorerBarGroup を表示します。
グループの Expanded プロパティが True に設定されている場合、グループの UltraExplorerBarItem も表示されます。
グループの高さがコントロールの高さを超えている場合は、できるかぎり多くの部分が見えるようにします。
Imports System.Diagnostics Imports Infragistics.Win Imports Infragistics.Win.UltraWinExplorerBar Private Sub Button33Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button33.Click ' Find the first Group that has a checked Item and ensure that it is in view. Dim i As Integer For i = 0 To Me.ultraExplorerBar1.Groups.Count - 1 If Not Me.ultraExplorerBar1.Groups(i).CheckedItem Is Nothing Then Me.ultraExplorerBar1.Groups(i).EnsureGroupInView() Exit For End If Next End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinExplorerBar; private void button33_Click(object sender, System.EventArgs e) { // Find the first Group that has a checked Item and ensure that it is in view. for (int i = 0; i < this.ultraExplorerBar1.Groups.Count; i++) { if (this.ultraExplorerBar1.Groups[i].CheckedItem != null) { this.ultraExplorerBar1.Groups[i].EnsureGroupInView(); break; } } }