How can I place a form at the bottom-right of the screen when it loads using C#?
Form2 a = new Form2(); a.StartPosition = FormStartPosition.Manual; a.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - a.Width, Screen.PrimaryScreen.WorkingArea.Height - a.Height);