Reputation: 163
I was wondering how some applications have a menubar/toolstrip on the left and when the button is clicked--instead of a new form opening--options just open up on the empty space on the right like an embedded form.
Any advice, clue, hint Please tell me
Thank you.
Upvotes: 0
Views: 533
Reputation: 3751
It seems you need to have a dock-able panel same as toolbox in visual studio. You can achieve this by using tab controls an tweaking with its properties. The following link contains a demo on that. http://www.codeproject.com/KB/toolbars/SimpleDockableForm.aspx
Upvotes: 1