I am writing a Windows Mobile CE 5.0 c# application, and I want my form to be completely full screen, and not movable. I have been able to make the form unmovable and maximized. However, want it to cover the task bar as well on the PDA device (it's a symbol one).
I have done some PInvoke calls to hide the task bar. But still, when setting the form WindowState property to Maximized, it does not take up the blank space left by the task bar. Any help please?
Ravee RasaiyahPosted Nov 19, 2007, 5:46 AM
It's simple man, it's WM 5.0 based so, we can do easilly like below code snippet to u.
this.WindowsState=Windowsstyle.Maximinzed,
this.menu=null;
this.text=string.empty;
this.controlBox=false;
try above code snippt it's fine for u.
thanks.
Ashvin GungaPosted Feb 22, 2007, 6:38 AM
Hi,
Already worked out a fix to the problem.
Cheers!