我有一个MDI父窗体,它在运行时创建许多MDI子窗体。有没有一种聪明的方法可以将这些表单均匀地分布在父级中?有什么想法吗?
提前感谢!!
发布于 2009-09-13 11:19:01
**ArrangeIcons** child window icons are arranged within the parent
**Cascade** arrange the child windows within the parent window in a cascaded fashion
**TileHorizontal** tile the child windows horizontally
**TileVertical** tile the child windows vertically
//Cascade all child forms.
this.LayoutMdi(System.Windows.Forms.MdiLayout.Cascade);首先来看看http://www.codeproject.com/KB/cs/mdiformstutorial.aspx
https://stackoverflow.com/questions/1417362
复制相似问题