vote up 1 vote down star

Hi

in Windows mobile, how to identify key press

or screen press ?

in any screen of my program and in any time, even if i not in any textbox focus ?

thank's in advance

flag

26% accept rate

2 Answers

vote up 0 vote down

Implement an IMessageFilter, then do Application.AddMessageFilter(myFilter);

In the message filter, look for WM_MOUSEUP messages (you'll have to search for that and define a constant for it). Then you can use Cursor.CurrentPosition to work out where the mouse was.

For keys, handle:

WM_KEYUP and WM_SYSKEYUP
link|flag
If only the CF supported it. – ctacke Jul 4 at 19:22
vote up 0 vote down

Scott's on the right track. You need an IMessageFilter. Unfortunately the CF doesn't support them, nor does Application have an AddMessageFilter method.

The Smart Device Framework, however, does have an IMessageFilter, and its Application2 class does support AddMessageFilter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.