|
Clicked(object sender, System.EventArgs e) { this.LayoutMDI(MDILayout.TileVertical); }
public override void Dispose() { base.Dispose(); components.Dispose(); }
protected void InitializeComponent() {
this.components = new System.ComponentModel.Container(); this.mainMenu = new System.WinForms.MainMenu(); this.statusBar1 = new System.WinForms.StatusBar();
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.Text = "MDI Example"; this.Menu = mainMenu; this.ClientSize = new System.Drawing.Size(450, 200);
statusBar1.BackColor = System.Drawing.SystemColors.Control; statusBar1.Size = new System.Drawing.Size(496, 20); statusBar1.TabIndex = 1; statusBar1.Text = ""; statusBar1.Location = new System.Drawing.Point(0, 273);
this.Controls.Add(statusBar1); }
public static void Main(string[] args) { Application.Run(new MainForm()); }
} }
作者:jspfuns
上一页 [1] [2] [3]
|