How to create full screen applications in .Net CF

  • Thread starter Thread starter Bjoern Feld
  • Start date Start date
B

Bjoern Feld

Hi,

I want to create a fullscreen application in .Net CF.
Can anybody please point me in the right direction

TIA, Bjoern
 
Thanks Chris,

but how do I make it cover the Windows Startmenu bar in WCE.Net 4.2?

TIA Bjoern
 
Sorry, usually people want to create Kiosk application and not just full
screen applications.

You could try p/invoking the MoveWindow, ShowWindow, SetWindowPos on
FindWindow("HHTaskBar").
Or you could try to use the SHFullScreen to basically do the same.

Basically search for HHTaskBar or Kiosk in the
microsoft.public.dotnet.framework.compactframework newsgroup.

http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=kiosk+group:*.compactframework

Also http://www.pocketpcdn.com/articles/kiosk_mode.html covers this very
well.

You can buy a ready made solution here:
http://www.spbsoftwarehouse.com/products/kioskengine/index.html?en

Thanks,
Chris Craft
http://www.cjcraft.com/
 
Chris,

thanks for the links.
bjoern
Chris Craft said:
Sorry, usually people want to create Kiosk application and not just full
screen applications.

You could try p/invoking the MoveWindow, ShowWindow, SetWindowPos on
FindWindow("HHTaskBar").
Or you could try to use the SHFullScreen to basically do the same.

Basically search for HHTaskBar or Kiosk in the
microsoft.public.dotnet.framework.compactframework newsgroup.

http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=kiosk+group:*.compactframework

Also http://www.pocketpcdn.com/articles/kiosk_mode.html covers this very
well.

You can buy a ready made solution here:
http://www.spbsoftwarehouse.com/products/kioskengine/index.html?en

Thanks,
Chris Craft
http://www.cjcraft.com/
 
Back
Top