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 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 );