Click here to Skip to main content
15,868,004 members
Articles / Mobile Apps

Windows Mobile: disable touch input

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
3 Apr 2013CPOL2 min read 17.4K   4   7
Hello sometimes you might want to 'lock' the screen, or to put it another way: disable touch input.

sometimes you might want to ‘lock’ the screen, better say: disable touch input. For example, if you put the device in a pocket, to avoid accidentally tapped screen elements.

It took me a long time and deep searches and trials to find out, how that could be done. Beside there is a API function called DisableTouch, you need to reboot to re-enable touch screen input. The corresponding API EnableTouch() needs a function pointer as callback for touch input processing. How could you provide some?

Fortunately I found TouchRegisterWindow and TouchUnregisterWindow. Although I do not know exactly what they are for and there is NO documentation to find anywhere. The only references I found was about transcriber input and at the TouchLockPro code. 

I managed to use the functions easily after some digging in the TouchLockPro (sourceforge project) code. TouchLockPro disables touch screen input by creating a window of zero size and registering this with TouchRegisterWindow. The WndProc of this zero size window does nothing and the screen is ‘blocked’ for touch input.

But there is an easier use: you can just register the desktop window handle of Windows Mobile. If you use it with TouchRegisterWindow(), the touch input is no more forwarded to the mobile screen elements. To ‘unlock’ touch screen input, you just have to call TouchUnregisterWindow() with the handle of the desktop window (GetDesktopWindow()).

Looking thru the window list with CE remote Spy you will see two Desktop windows:

   

GetDesktopWindow() will return the non-zero one.

Now, you know an easy way to lock and unlock the touch screen input.

If you are coding a kiosk mode app, it may be easier to just code some ‘ignore input’ function without using TouchRegisterWindow and TouchUnregisterWindow of touch.dll.

BTW: you should use these two functions with dynamically.  

License

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


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionUsing it from C# on Windows Mobile 6.5.8.3 Pin
Daniel Siegl13-Nov-12 3:10
Daniel Siegl13-Nov-12 3:10 
AnswerRe: Using it from C# on Windows Mobile 6.5.8.3 Pin
hjgode14-Nov-12 4:32
hjgode14-Nov-12 4:32 
I updated my blog with some code samples (C): http://www.hjgode.de/wp/2012/09/24/windows-mobile-disable-touch-input/[^]

Hopefully it is then clear what to use in CSharp. But you can also use the DLL code I posted in the update.
AnswerRe: Using it from C# on Windows Mobile 6.5.8.3 Pin
hjgode14-Nov-12 22:30
hjgode14-Nov-12 22:30 
GeneralRe: Using it from C# on Windows Mobile 6.5.8.3 Pin
Daniel Siegl15-Nov-12 1:00
Daniel Siegl15-Nov-12 1:00 
AnswerRe: Using it from C# on Windows Mobile 6.5.8.3 Pin
hjgode15-Nov-12 19:51
hjgode15-Nov-12 19:51 
GeneralRe: Using it from C# on Windows Mobile 6.5.8.3 Pin
Daniel Siegl15-Nov-12 23:10
Daniel Siegl15-Nov-12 23:10 
GeneralRe: Using it from C# on Windows Mobile 6.5.8.3 Pin
hjgode16-Nov-12 21:19
hjgode16-Nov-12 21:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.