I have WinForm application and i want to enter fullscreen mode and remove all bars and the task bar. i done it with this:
this.WindowState = FormWindowState.Maximized;
this.FormBorderStyle = FormBorderStyle.None;
this.TopMost = true;
The top bar is really hidden but the Windows TaskBar is still visible. Any idea what can be the trouble?
Manoj Bhatt
08-Oct-2013You can use this code