There's got to be a way to do this, but I can't get it to work.
I've got an MDI parent form. On most of my child forms, I want to have a full navigation panel on the side (housed in a dockable pane).
On a couple of screens (like Login and a Dashboard), I don't want this panel to appear. I've tried setting the Visible property to false, but it doesn't always work. I've noticed that manually resizing the Form causes the panel to disappear, so I know the property is being set.
There also doesn't appear to be a Visible property on any of the individual child panes, but I've love to be proven wrong.
Ideas? Thank you very much.
This worked for me.
this.ultraDockManager1.DockAreas[0].Panes[0].Closed = true ;
Thanks
Panna
Hi byucygnus,
Have u got any resolution for this ? I am too running through the same requirement of hiding a dockable pane on certain conditions.