Inheritance: System.Windows.Forms.Form
Exemple #1
0
 private void aboutAmandaToolStripMenuItem_Click(object sender, EventArgs e)
 {
     About aboutForm = new About();
     aboutForm.StartPosition = FormStartPosition.Manual;
     aboutForm.Location = new Point(this.Location.X + (this.Width - aboutForm.Width) / 2, this.Location.Y + (this.Height - aboutForm.Height) / 2);
     aboutForm.Show(this);
 }