1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Fenster Werden horizontal angeordnet
this.LayoutMdi(MdiLayout.TileHorizontal);
// Fenster Werden vertikal angeordnet
this.LayoutMdi(MdiLayout.TileVertical);
// Kaskadiert die MDI Child Fenster
this.LayoutMdi(MdiLayout.Cascade);
// alle minimierten MDI Child Fenster werden links unten positioniert
this.LayoutMdi(MdiLayout.ArrangeIcons);
// Alle MDI Child Fenster schließen
foreach (Form var in this.MdiChildren)
var.Close();
|