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
DocktoNoneof the main split container (I guess its name issplitContainer1). - Add a new
SplitContainerinside your form. - Drag and drop entire
splitContainer1inside the left panel of the new split container. - Change
DockofsplitContainer1back toFill. - Change
DockofsplitContainer3(the new one) toFill.


