Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinDock
Private Sub btnShowAll_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShowAll.Click
' There are several options for showing a closed pane.
' You can call the 'Show' method of a specific pane. This
' essentially walks up the parent chain ensuring that all the
' parents are not closed.
Me.ultraDockManager1.ControlPanes("treeSolutions").Show()
' You can use the ShowChildPanes of a specific group. This method
'has an overload to optionally pin any unpinned control panes.
' The following method call is equivalent to calling
' Me.ultraDockManager1.DockAreas(0).ShowChildPanes(False)
Me.ultraDockManager1.DockAreas(0).ShowChildPanes()
' Lastly, you can use the ShowAll method of the dock
' manager to have it iterate over its DockAreas collection
Me.ultraDockManager1.ShowAll(False)
End Sub