The following code resizes the Form Window to fit the entire screen .
int iWindowWidth = Screen.PrimaryScreen.Bounds.Width;
int iWindowHeight = Screen.PrimaryScreen.Bounds.Height;
this.Size = new Size(iWindowWidth, iWindowHeight ) ;