Question

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?

Was it helpful?

Solution

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 );
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top