Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't seem to figure out how to keep a panel's width fixed in a Split Container in a WinForm.

Any suggestions?

share|improve this question
if you want the width to be fixed then why use a split container? You could use two panels. Or probably better off to use the anchor properties of each of the controls. – gbogumil Jul 26 '10 at 19:09
Split containers are design specifically to have liquid panels? doh! – sooprise Jul 26 '10 at 19:12

2 Answers

up vote 1 down vote accepted

If you'd keep one panel's size fixed, there is no logical way to move the splitter. Since you can't move the splitter, it just doesn't make sense to use a SplitContainer anymore. Use two Panel controls.

share|improve this answer

property SplitterPanel.FixedPanel - set one of panels to fixed size

property SplitterPanel.IsSplitterFixed - set splitter to fixed state

share|improve this answer
1  
This should be the right answer ! – Shikata Ga Nai Feb 6 at 11:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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