How to display a Windows Form in full screen on top of the taskbar? [duplicate]

Use:

FormBorderStyle = FormBorderStyle.None;
WindowState = FormWindowState.Maximized;

And then your form is placed over the taskbar.

Leave a Comment