' Note, the ShowExpansionIndicator property only effects the UltraExplorerBar when the
' Style is set to 'ExplorerBar' or 'VisualStudio2005'.
Me.UltraExplorerBar1.Style = UltraExplorerBarStyle.VisualStudio2005Toolbox
' Do not show the expansion indicators by default
Me.UltraExplorerBar1.GroupSettings.ShowExpansionIndicator = DefaultableBoolean.False
' Do show the expansion indicator on the first group header
Me.UltraExplorerBar1.Groups(0).Settings.ShowExpansionIndicator = DefaultableBoolean.True