Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MDIParent Tiling children

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?

like image 911
Dested Avatar asked Sep 26 '08 04:09

Dested


1 Answers

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 );
like image 155
Leon Tayson Avatar answered Sep 16 '22 17:09

Leon Tayson