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
Post a Comment