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.
|
feedback
|
|
I think you are just looking for the "IsSplitterFixed" property. | |||||
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.
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. | |||
|
feedback
|