Missing something - full screen under CE 4.1

  • Thread starter Thread starter Adam Goetz
  • Start date Start date
A

Adam Goetz

I know I've done this but cannot remember how :
C#.NET app on CE 4.1 device.

ControlBox = false;
FormBorder = none;
MaximizeBox = false;
Menu = (none);
MinimizeBox = false;
In Form_Load WindowState set to Maximized

Bottom menu bar doesn't disappear. What am I missing?
 
also this.text = "";

and in the form_load put:
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;

hope this helps
Matteo.

And also put the
 
Back
Top