vote up 0 vote down star

Is it possible to dock a form1 to a panel contained in another form2? I'm launching form1 with ShowDialog from a form2 event.

flag

77% accept rate

2 Answers

vote up 1 vote down

Consider extracting the controls out of form1 into a UserControl. Use that UserControl on form1 (assuming you need it as a form as well as the docked control), then dock the UserControl on form2 to implement the desired functionality.

link|flag
vote up 0 vote down

Not with ShowDialog (or even Show), no. A form that has already been displayed as a top-level form cannot later be added as a subcontrol of any other control. You can try to keep the form within a particular set of screen bounds by monitoring the LocationChanged event, but that will appear jerky on the screen.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.