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
Try without FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
and comment line like :
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load( object sender, EventArgs e )
{
// FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
Left = Top = 0;
Width = Screen.PrimaryScreen.WorkingArea.Width;
Height = Screen.PrimaryScreen.WorkingArea.Height;
}
}