Click here to Skip to main content
15,881,659 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello,

i amdeveloping a application fro wince using c#.net .for full screen application modei have used below procedure.

this.Height = Screen.PrimaryScreen.Bounds.Height;
this.Width = Screen.PrimaryScreen.Bounds.Width;
this.TopMost=true;

it's working fine. but it's that the correct todisplay in full screen mode or the task bar should be hidden for proper operaions
Posted

Try this:

this.Bounds = Screen.PrimaryScreen.Bounds;
this.TopMost = true;
 
Share this answer
 
thank you for your reply. the code is working fine but when a splash screen unloaded the main form is displyed with task bar. should is disable totally the task bar
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900