this.IsMdiContainer = true; Form2 f=new Form2(); f.MdiParent = this; f.Show(); //这里的this相当于form1
在窗体属性中有一个IsMdiContainer把值由false改成true就可以了。