Thursday 15 September 2011

c# - Adding Control to MDI Client -


Please help me, I have a problem, I want to know how to add buttons or panel controls such as MDI client please

If I understand you correctly, you should form a form in the design view in general. And then these forms can be loaded as children in MDI parents.

  // Create a new example form of child form = childform = new form 1 (); // where form1 is a form that you have created // Before making this show, make it a child of this MDI form. ChildForm.MdiParent = This; ChildForm.Text = "Window" + childFormNumber ++; ChildForm.Show (); Take a look at  

.


No comments:

Post a Comment