I'm developing a Windows Forms application in C# with an embedded WebBrowser control to "dummy-proof" (i.e. disable context menus, back button, free navigation, etc.) access to a third-party web application.
Right now I'm trying to add the Zoom feature to my custom browser. I have the keyboard combos working for it (CTRL + and CTRL - make the correct OLE calls to the underlying ActiveX WebBrowser object), but among the other frustrating things about WebBrowser I've had to deal with, I can't seem to figure out how to capture CTRL-Mouse wheel to simulate the Zoom function like IE does. I've looked everywhere to find a solution to this but to no avail.
To try to figure it out, I created an empty form with just the WebBrowser control in it, and found the following:
- CTRL-MouseWheel always fires the
MouseWheelevent when the parent form has focus and the mouse cursor is hovering over the top of the window (e.g. over the title of the application), or when the mouse cursor is hovering over theWebBrowsercontrol when it does not appear to have focus even though the parent form has focus. - CTRL-MouseWheel never fires the
MouseWheelevent when the mouse cursor is hovering over theWebBrowsercontrol andWebBrowserhas focus, and there seems to be no effect. - Using the mouse wheel without CTRL scrolls the window contents of
WebBrowserbut does not fire theMouseWheelevent until the vertical scroll bar has fully reached either the top or the bottom. - Intercepting the
MessageforWM_MOUSEWHEELby overridingWndProcandDefWndProcboth for a sample class inherited fromWebBrowserand for the parent form applies only for the above conditions (withwParamproperly denotingMK_CONTROL). - The
PreviewKeyDownevent fires when CTRL is pressed, as expected, but still does nothing in unison with the mouse wheel.
So I guess the Message is being processed below the parent form and the managed control level and does not bubble up to where I can intercept or even handle it. Is there a way to do this, or some other way to simulate zooming in and out using CTRL-MouseWheel?
Thanks for reading!