you can do one of the following
1- start the form maximized
Set the System.Windows.Forms.Form.WindowState property to FormWindowState.Maximized
2- or set it from code
this.Location = new Point(0, 0);
this.Size = Screen.PrimaryScreen.WorkingArea.Size;