Handling key events on WebBrowser control - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T18:37:09Zhttp://stackoverflow.com/feeds/question/649441http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/649441/handling-key-events-on-webbrowser-control0Handling key events on WebBrowser controlJen2009-03-16T06:31:40Z2009-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#7481190Answer by Dave Foster for Handling key events on WebBrowser controlDave Foster2009-04-14T15:23:57Z2009-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#10062821Answer by balexandre for Handling key events on WebBrowser controlbalexandre2009-06-17T10:40:24Z2009-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 && e.KeyCode == Keys.C)
{
// Do something funny!
}
}
</code></pre>