I am migrating a .NET application from WM5 to WM6.5. In addition to the new resolution, I noticed different user interface settings for the Start menu and the title (title bar). My application should work in kiosk mode, where the user cannot exit the application and bypass our authentication. To do this, on WM5, I hid the start button and the close button. I am using the following function:
SHFullScreen(hWnd, SHFS_HIDESTARTICON | SHFS_HIDESIPBUTTON);
Hiding the buttons also works on WM6.5, but there is another problem. The user can click on the title bar (menu bar, title bar - I’m not sure that the correct name for him is the panel at the top of the screen) and get access to the Windows task manager. See attached screenshot

, :

, ? - Motorola MC65. Windows Mobile 6.5.
, , :
IntPtr tWnd = FindWindow("HHTaskBar", null);
EnableWindow(tWnd, false);
HHTaskBar . , .