Calling MyPanel.Panel1.Hide(); or MyPanel.Panel2.Hide(); simply hides the controls inside the panel... but I want to have the other side of the panel fill up the whole space.

So, if I hide Panel1, I want Panel2 to take up the whole space, and I want the splitter to disappear. Is that possible, if so, how?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Use MyPanel.Panel1Collapsed = true; to collapse Panel1 (likewise for panel2).

link|improve this answer
You are beautiful. – Timothy Khouri Apr 14 '10 at 16:25
feedback

To hide one of the panels you can call

MyPanel.Panel1Collapsed = true; // or Panel2Collapsed

If Panel2 was collapsed, it will toggle its state to be shown after this call.

MSDN Reference

link|improve this answer
Thank you for the additional information about the other panel showing up when setting the first one. – Timothy Khouri Apr 14 '10 at 16:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.