in Windows mobile, how to identify key or screen press ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:36:22Zhttp://stackoverflow.com/feeds/question/1081617http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081617/in-windows-mobile-how-to-identify-key-or-screen-press1in Windows mobile, how to identify key or screen press ?Gold2009-07-04T05:59:23Z2009-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#10817140Answer by Scott Langham for in Windows mobile, how to identify key or screen press ?Scott Langham2009-07-04T07:08:08Z2009-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#10828270Answer by ctacke for in Windows mobile, how to identify key or screen press ?ctacke2009-07-04T19:23:39Z2009-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#17603190Answer by Jens Granlund for in Windows mobile, how to identify key or screen press ?Jens Granlund2009-11-19T01:17:22Z2009-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>