Eine Windows Forms Anwendung genau in der Mitte des Bildschirms platzieren.
private void Form1_Load(object sender, EventArgs e)
{
// Start - Position
int breite = Screen.PrimaryScreen.Bounds.Width;
int höhe = Screen.PrimaryScreen.Bounds.Height;
int x = breite - this.Width;
int y = höhe - this.Height;
this.Location = new Point(x / 2, y / 2);
}
5 Kommentare zum Snippet