Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar
Private Sub Button27_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button27.Click
' For every Group that has the ControlContainer style, set the backcolor of the container to red.
Dim group As UltraExplorerBarGroup
For Each group In Me.ultraExplorerBar1.Groups
If (group.SettingsResolved.Style = GroupStyle.ControlContainer) Then
group.Container.BackColor = Color.Red
End If
Next
End Sub