C# – Compact Famework lock PDA screen

ccompact-framework

In windows mobile PDA app is there anyway to show a form full screen, no other PDA system menus, just our form on top in fullscreen and make the user no exit from the form (there will be an exit button in form , they can exit through that) , Like locking a windows application showing in maximized with no titlebar, taskbar , not ctrl-alt-delete, alt-tab etc, as we did in win apps with APIs. I need the same thing in PDA.

Best Answer

Setting the WindowState to Maximized will make the form visually cover the full screen, but will not prevent the user to leave the screen using hardware buttons on the device.

Related Topic