WPF - 将鼠标滚轮消息发送到 Frame/WebBrowser 控件
我使用 WebBrowser 控件(或 Frame,尚未决定)在 WPF 应用程序中托管一些 Web 内容。我想使用一些外部影响来模拟网页内容中的鼠标滚轮行为。有没有办法让我的 WPF 应用程序使用我指定的 Delta(滚动)值将鼠标消息发送到 WebBrowser 控件?
I'm hosting some web content in a WPF app using the WebBrowser control (or Frame, havent' decided yet). There are some external influences that I'd like to use to simulate mouse wheel behavior in the web content. Is there a way for my WPF app to send mouse messages to the WebBrowser control, with a Delta (scroll) value that I specify?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你找不到更简单的东西,试试这个。获取Web浏览器窗口句柄,以及SendMessage() WM_MOUSEWHEEL 到它...
希望这有帮助
If you will not find anything simpler try this. Get WebBrowser window handle, and SendMessage() WM_MOUSEWHEEL to it...
Hope this helps