Handling key events on WebBrowser control - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T18:37:09Z http://stackoverflow.com/feeds/question/649441 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/649441/handling-key-events-on-webbrowser-control 0 Handling key events on WebBrowser control Jen 2009-03-16T06:31:40Z 2009-06-17T10:40:24Z <p>I am using the <code>WebBrowser</code> control in a C# application and want to handle all key events while the <code>WebBrowser</code> has the focus, regardless what individual content element (input field, link, etc.) is focused. I tried to simply add an event handler to browser controls <code>KeyDown</code> event, but this does not work. I don't want to explicitly hook a handler to each focusable <code>HtmlElement</code>.</p> <p>How can I receive all key events <em>before</em> they are passed to the browser or its content elements?</p> http://stackoverflow.com/questions/649441/handling-key-events-on-webbrowser-control/748119#748119 0 Answer by Dave Foster for Handling key events on WebBrowser control Dave Foster 2009-04-14T15:23:57Z 2009-04-14T15:23:57Z <p>Is it possible in your application to handle keydowns in the parent form? We have a form containing a WebBrowser in which we hook into the Application's PreFilterMessage setup and look for keydowns there.</p> http://stackoverflow.com/questions/649441/handling-key-events-on-webbrowser-control/1006282#1006282 1 Answer by balexandre for Handling key events on WebBrowser control balexandre 2009-06-17T10:40:24Z 2009-06-17T10:40:24Z <p>you have the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.previewkeydown.aspx" rel="nofollow">PreviewKeyDown</a> event just hook it up.</p> <pre><code>private void wb_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) { // your code handling the keys here, like: if (e.Control &amp;&amp; e.KeyCode == Keys.C) { // Do something funny! } } </code></pre>