A
Adam Goetz
I know how to do this in C# PocketPC and in C++ native code, but I'm having
a problem with getting full screen apps in C# on a CE 4.x unit.
I have this code:
IntPtr piTrayWnd = FindWindow("HHTaskBar", "");
SetWindowPos(piTrayWnd, 1, 0, 0, 0, 0, 0x0080);
Where FindWindow and SetWindowPos have both been DllImported.
This causes the task bar area to become a dead zone, nothing draws over it,
the task bar is defunct. I have no problems with a defunct taskbar, but the
failure to draw over is annoying.
WindowState is set to Maximised after the above call.
Any suggestions?
a problem with getting full screen apps in C# on a CE 4.x unit.
I have this code:
IntPtr piTrayWnd = FindWindow("HHTaskBar", "");
SetWindowPos(piTrayWnd, 1, 0, 0, 0, 0, 0x0080);
Where FindWindow and SetWindowPos have both been DllImported.
This causes the task bar area to become a dead zone, nothing draws over it,
the task bar is defunct. I have no problems with a defunct taskbar, but the
failure to draw over is annoying.
WindowState is set to Maximised after the above call.
Any suggestions?