Skip to main content

How to: Display all the hidden panels

The following code shows how to display all the hidden panels.

using DevExpress.XtraBars.Docking;
// ...
while(dockManager1.HiddenPanels.Count > 0) {
   dockManager1.HiddenPanels[0].Visibility = DockVisibility.Visible;
}