Missing something - full screen under CE 4.1

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?
 
M

Matteo Cima

also this.text = "";

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

hope this helps
Matteo.

And also put the
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top