I have a SplitContainer and was wondering how I would go about setting a static size for both panels and prevent the user from having the ability to resize the panels. Would FixedPanel be the solution? From what I read, I don't think it is.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I think you are just looking for the "IsSplitterFixed" property.

link|improve this answer
And make sure the panel isn't docked or anchored (bottom/right) to a resizable container. – Igby Largeman Aug 16 '11 at 20:02
Thanks! That works – dangerisgo Aug 16 '11 at 21:42
feedback

If you don't want to allow the user to resize the panels, do not use an SplitContainer.

Simply use panels, and add a 2px width panel to simulate the separator.

  • PanelContainer -> Will contain PanelA, PanelB and PanelC
  • PanelA (left panel) -> Dock it to left
  • PanelB (separator) -> setup to have 2px width
  • PanelC (right panel) -> Dock it to fill

Then, you can change the size of the panels as you want in design mode, and the user will not be able to resize the panels.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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