建立一个窗体后,把它的IsMdiContainer设置为true就OK了。

解决方案 »

  1.   

    1.首先有个Form1,自己添加一个Form2 ;
    2.将Form1.IsMdiContainetr = true;
    3.在Form1中加个button1 ,在button_click 中添加如下代码:
               Form2 theForm2 = new Form2();
                     thForm2.MdiParent = this;
                     thForm2.Show();
    4.ok?
      

  2.   

    将IsMdiContainer设置为true
    再建立主菜单等等,就跟原来6.0以下的操作一样了