怎么实现多窗体的层叠,平铺?
怎么创建象Excel一样的可以实现打开多个子窗口,我写了一个但是就是不行。望高手们帮帮忙!在顶级菜单的子菜单下的新建添加代码:AddNewFile();
退出添加代码:this.close();
最后添加代码:private void AddnewFile()
{
windowCount++;
Form1 doc=new Form1();
doc.Text="文档"+windowCount;
doc.MdiParent=this;
doc.Show();
}
以上的代码都是在父窗体中写的。
将子窗体的MdiParent属性设置为this。
不过运行的时候不行。望高手们看看,提提看法。谢谢!!