I have a WebBrowser control that is used to generate formatted HTML code in our application. However, keyboard shortcuts like Copy/Cut/Paste/SelectAll are handed by the control when WebBrowserShortcutsEnabled is set to true. These operations are fine to be handled by the control itself, however, there are certain operations such as Ctrl+S that are used in the parent control that should be used to Save/Save All, etc. When the WebBrowser control has focus, these other keyboard shortcuts are not passed to the parent control. Is there a way I can hijack these keyboard events programattically?
I have tried using the PreviewKeyPress event to pass single keystrokes to the parent control but I am having a difficult time passing multiple keystrokes. Any ideas?