c# - MDI Parent Child -


i have created 1 mdi form & want inherit made child form. have access controls on mdi in child form. (i dont want create new inherited form, have one)

your question rather unclear appears asking how show form mdi child. assume have set ismdicontainer true main form.

in order show mdi child need set mdiparent property child form. this:

childform mychild = new childform(); mychild.mdiparent = this;//this main form, mdi parent mychild.show(); 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -