Not that I ever did this - my approach would be:
In full screen mode, do the following:
turn off the form border set the controlbox to false (get rid of the title menu and the upper left window) make the / toolstrip menu invisible.
This is done using the Visibility property of these controls.
Now you can set the maximum state of the form window.
EDIT - Code Example:
Paste this into the new forms application code file
public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.ControlBox = false; this.FormBorderStyle = FormBorderStyle.None; this.WindowState = FormWindowState.Maximized; } private void Form1_KeyDown(object sender, KeyEventArgs e) {
source share