Is there any way to tile all of the form children of an mdi parent easily? I'm looking for most of the functionality that windows offers, tile cascade. Anyone know of an easy way?
MDIParent Tiling children
try these...
// 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 );
You are the wind beneath my wings. –
Festal
I had to put this.LayoutMdi into protected override void OnShown to get the layout working work https://mcmap.net/q/1777286/-layoutmdi-fails-in-form-39-s-onload-event –
Oviform
© 2022 - 2024 — McMap. All rights reserved.