views:

238

answers:

1

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?

+2  A: 

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 );
Leon Tayson
You are the wind beneath my wings.
Dested