I have a WinForms application, which is set to full screen mode when I login.
My problem is it\'s covering the Windows taskbar also. I don\'t want my application to
If you have multiple screens, you have to reset location of MaximizedBounds :
Rectangle rect = Screen.FromHandle(this.Handle).WorkingArea; rect.Location = new Point(0, 0); this.MaximizedBounds = rect; this.WindowState = FormWindowState.Maximized;