splitter control

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

How do I display a form next to a splitter control at run time?

I have 3 Controls:

TreeView (Dock left)
Splitter (Dock left)
Panel (Dock fill)

At run time I want to be able to show another form next to the spitter
control when I click on a node in the TreeView control. Any help will be
appreciated.
 
Richard,

I wouldn't recommend embedding a form, but rather, place the different
controls that you need on separate panels (or separate controls). When you
click on the node, load the control, and then display it in the panel on the
other side.

Hope this helps.
 
Yes, your way sounds better. Thanks!


Nicholas Paldino said:
Richard,

I wouldn't recommend embedding a form, but rather, place the different
controls that you need on separate panels (or separate controls). When you
click on the node, load the control, and then display it in the panel on the
other side.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Richard said:
How do I display a form next to a splitter control at run time?

I have 3 Controls:

TreeView (Dock left)
Splitter (Dock left)
Panel (Dock fill)

At run time I want to be able to show another form next to the spitter
control when I click on a node in the TreeView control. Any help will be
appreciated.
 
Back
Top