.NET 2 SP 1 CE 4.2 Full Screen

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

Adam Goetz

Any easy way of making a .NET 2.0 app on CE 4.2 full screen, i.e.
covers/hides the task bar, or do I have to start p/invoking in api calls?
 
Yes, you can and yes, you will need to P/Invoke various things. You'll need
to hide and disable the task bar in order for it not to appear; that
requires P/Invoke of FindWindow(), EnableWindow(), and ShowWindow(). This
has been covered in detail a number of times before. You'll get a better
step-by-step list if you go to GoogleGroups at the link below and search the
archives of this group:

http://groups.google.com/group/micr...tframework?hl=en&lr=lang_en&ie=UTF-8&oe=UTF-8

This one, in particular, is pretty thorough:

http://groups.google.com/group/micr...?lnk=gst&q=kiosk+mode&rnum=1#0bbab9dcd01f3352

Paul T.
 
Back
Top