Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以轻松地平铺 mdi 父级的所有表单子级?我正在寻找 Windows 提供的大部分功能,即 tile cascade。有谁知道一个简单的方法?
试试这些...
// 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 );