Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add a Panel to SplitContainer?

I am using SplitContainer and it contains only 2 panels but I need 3(panels).

QUESTIONS:

Is it possible to add more panels to SplitContainer?

if YES
      how? 
else
      why not?

Thanks :-)

like image 970
Pratik Deoghare Avatar asked Dec 02 '09 08:12

Pratik Deoghare


People also ask

What is the use of SplitContainer?

The SplitContainer control lets you create complex user interfaces; often, a selection in one panel determines what objects are shown in the other panel. This arrangement is very effective for displaying and browsing information.

What is splitter in C#?

Windows Forms Splitter controls are used to resize docked controls at run time. The Splitter control is often used on forms with controls that have varying lengths of data to present, like Windows Explorer, whose data panes contain information of varying widths at different times.


1 Answers

Strictly speaking, it's not possible. But, you could always use a second SplitContainer in one of the first SplitContainer's panel to obtain similar results.

like image 169
Bryan Menard Avatar answered Oct 23 '22 13:10

Bryan Menard