I am trying to add another panel (with a splitter) to the right of the following image. It currently has a Panel on the left with a splitter and 2 panels in the middle with a splitter.
How can i add a panel to the right of these, the panel must go all the way to the top and bottom of the form and be resizable with a splitter? thanks
CodePudding user response:
- Change
Dock
toNone
of the main split container (I guess its name issplitContainer1
). - Add a new
SplitContainer
inside your form. - Drag and drop entire
splitContainer1
inside the left panel of the new split container. - Change
Dock
ofsplitContainer1
back toFill
. - Change
Dock
ofsplitContainer3
(the new one) toFill
.