vote up 1 vote down star

I want to hide panel2 on a split container and have panel1 utilize the space. I was hoping setting Panel2Collapsed would do the trick, but no luck. Ideas?

flag

58% accept rate
What actually happens when you set Panel2Collapsed to true? Does Panel2 stay visible? – Daniel LeCheminant Mar 14 at 7:02

3 Answers

vote up 6 vote down check

This worked for me on a similar situation:

splitContainer1.Panel2Collapsed = true;
splitContainer1.Panel2.Hide();

I wanted the second panel to not be visible at all in some cases, so I implemented it this way.

link|flag
If you don't set the SplitterDistance and calling Hide(), which part of Panel2 is visible? – Daniel LeCheminant Mar 14 at 6:48
If I recall correctly, if you didn't set the SplitterDistance, then at the far end of Panel1 the mouse cursor would change, making it evident that there is another panel there. – Nikos Steiakakis Mar 14 at 6:52
but what happens when the user resizes the form – CrashCodes Mar 14 at 7:00
@Nikos: Hmm... I can't recreate that :-/ That kind of issue exists with the Splitter control, but I thought the whole purpose of the SplitContainer was to do away with those issues... – Daniel LeCheminant Mar 14 at 7:01
@CrashCodes: If the splitcontainer is docked, or properly anchored it will resize with the form, and Panel1 will stay docked to fill the entire splitcontainer. – Nikos Steiakakis Mar 14 at 7:10
show 6 more comments
vote up 0 vote down

Setting Panel2Collapsed property to true in the form designer and programatically both work as you want them to (i.e. Panel1 then occupies all of the space)... so there must be something else going on.

link|flag
vote up -1 vote down

Try setting panel2.Visible = false.

link|flag

Your Answer

Get an OpenID
or

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