Fullscreen App

  • Thread starter Thread starter Christian Stelte
  • Start date Start date
C

Christian Stelte

Hello!

How do I a fullscreen-app?
Using FormBorderStyle = none and size(320,240) didn't work. It uses the 320
pixel, but it displays the TaskBar and moves the bottom out of the screen.

Any idea?

Chris
 
Maarten Struys said:
Take a look at this FAQ:
http://msdn.microsoft.com/mobility/prodtechinfo/devtools/netcf/faq/default.aspx#4.1

Great it works!
But :

If only my Programm runs I have always the Startmenü with the Taskbar in
front of my programm.
After starting an other program (e.g. Contacts) my program still be in front
of the new program. Only the programname in the taskbar changes to the new
programname. When I now tap on my program it comes in front of the taskbar
and still remains there.

Chris
 
Hi!

If you want to hide the start button, you have to add a toolbar to your
dialog. in the Load-member of your form-class use the following code:
this.WindowState = FormWindowState.Maximized;
this.Menu = null;
this.Controls.Remove(this.toolBar1);


astrid
 
Back
Top