Open Windows Form in Full Screen
I have a Windows Form(Main Form) that i need to open in full screen(not showing the taskbar)...can any one say how is this possible.
Thanx.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kirtan PatelPosted Oct 3, 2009, 2:03 AM
private void Form1_Load(object sender, EventArgs e)
{
this.TopMost = true;
this.FormBorderStyle = FormBorderStyle.None;
this.WindowState = FormWindowState.Maximized;
}
This Will run from Full Screen ...
dont forget to put Close Button on Form :P
Jerry MaguirePosted Sep 1, 2021, 12:35 PM
Syed RazviPosted Jan 10, 2010, 1:51 AM
public WinForm1()
{
InitializeComponent();
this.TopMost = true;
//this.FormBorderStyle = FormBorderStyle.SizableToolWindow;//.None;
this.FormBorderStyle = FormBorderStyle.Fixed3D;
this.WindowState = FormWindowState.Maximized;
}
Try this too, it might help
Serban CosminPosted Oct 3, 2009, 2:03 AM