in Windows mobile, how to identify key or screen press ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:36:22Z http://stackoverflow.com/feeds/question/1081617 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081617/in-windows-mobile-how-to-identify-key-or-screen-press 1 in Windows mobile, how to identify key or screen press ? Gold 2009-07-04T05:59:23Z 2009-11-19T01:17:22Z <p>Hi</p> <p>in Windows mobile, how to identify key press</p> <p>or screen press ?</p> <p>in any screen of my program and in any time, even if i not in any textbox focus ?</p> <p>thank's in advance</p> http://stackoverflow.com/questions/1081617/in-windows-mobile-how-to-identify-key-or-screen-press/1081714#1081714 0 Answer by Scott Langham for in Windows mobile, how to identify key or screen press ? Scott Langham 2009-07-04T07:08:08Z 2009-07-04T07:08:08Z <p>Implement an IMessageFilter, then do Application.AddMessageFilter(myFilter);</p> <p>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.</p> <p>For keys, handle:</p> <pre><code>WM_KEYUP and WM_SYSKEYUP </code></pre> http://stackoverflow.com/questions/1081617/in-windows-mobile-how-to-identify-key-or-screen-press/1082827#1082827 0 Answer by ctacke for in Windows mobile, how to identify key or screen press ? ctacke 2009-07-04T19:23:39Z 2009-07-04T19:23:39Z <p>Scott's on the right track. You need an IMessageFilter. Unfortunately the CF doesn't support them, nor does Application have an AddMessageFilter method.</p> <p>The <a href="http://smartdeviceframework.com" rel="nofollow">Smart Device Framework</a>, however, does have an IMessageFilter, and its Application2 class does support AddMessageFilter.</p> http://stackoverflow.com/questions/1081617/in-windows-mobile-how-to-identify-key-or-screen-press/1760319#1760319 0 Answer by Jens Granlund for in Windows mobile, how to identify key or screen press ? Jens Granlund 2009-11-19T01:17:22Z 2009-11-19T01:17:22Z <p>The .NET Compact Framework Team created a sample of how to subclass controls. You can use the WndProcHooker class to hook event handlers to WM_* events on a control.</p> <p><a href="http://blogs.msdn.com/netcfteam/archive/2005/05/20/420551.aspx" rel="nofollow">http://blogs.msdn.com/netcfteam/archive/2005/05/20/420551.aspx</a></p>