1
vote
.Net Maximized Screen Ignores Taskbar
Set the form border to None before making it maximized.
This code will work in a single monitor:
private void Form1_Load(object sender, EventArgs e)
{
this.FormBorderSty …
