有没有什么方法可以轻松地平铺mdi父对象的所有表单子对象?我正在寻找windows提供的大多数功能,磁贴层叠。有谁知道一种简单的方法吗?
发布于 2008-09-26 04:19:57
试试这些..。
// Tile all child forms horizontally.
this.LayoutMdi( MdiLayout.TileHorizontal );
// Tile all child forms vertically.
this.LayoutMdi( MdiLayout.TileVertical );
// Cascade all MDI child windows.
this.LayoutMdi( MdiLayout.Cascade );https://stackoverflow.com/questions/137743
复制相似问题