我有一个 MDI 父窗体,它在运行时创建许多 MDI 子窗体。有没有一种聪明的方法可以在父级内部均匀分布这些表单?有任何想法吗?
提前致谢!!
**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);