splitter control

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.
 
N

Nicholas Paldino [.NET/C# MVP]

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.
 
R

Richard

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top