MDI - Question
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Please tell me how can we make multiple SDI application to show one child window .... that can not maximized or minized.
hi hasan, first you need to set the container form "the parent" property mdi container to true from the form properties, then when poping up another form to be the child, do this yourChildForm kid = new yourChildForm(); yourChildForm.MdiParent=this; //when invoking from the parent form yourChildForm.Show(); for the child form, set the minimize/maximize options from the properties window to false; regards, Muammar.
All generalizations are wrong, including this one!