Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docking a form onto another form

Tags:

c#

.net

I have a form which contains some controls (similar to visual studio toolbox). This form is a top level control. I want to dock this form on another form. Is it possible? How do I do this?

like image 485
user728972 Avatar asked Apr 19 '26 20:04

user728972


1 Answers

Take a look at UserControls. http://msdn.microsoft.com/en-us/library/aa302342.aspx

like image 147
LueTm Avatar answered Apr 22 '26 18:04

LueTm