Full Screen under CE4.1 device

A

Adam Goetz

I have a development C# app that runs full-screen under PocketPC2002. When
I tried this app on a Win CE4.1 device, the top and bottom bars didn't
disappear.

The app's Forms are set to
FormBorderStyle = None
MaximizeBox = False
MinimizeBox = False
On the FormLoad I set
WindowState = Maximized

Under 4.1, what do I have to do differently?
 
N

Norman Rericha

This was tricky for me as well.

I found that the following works....

this.ControlBox = false;
this.FormBorderStyle = FormBorderStyle.None;

Hope this helps

Norm
 

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