什么 ActiveX 控件实现 Web 浏览器?
我正在使用现有的 SDK 编写一个附加组件,该 SDK 没有类似 webview 的组件,但允许使用 ActiveX 控件。
因此,我想到的唯一想法是找到一个实现 Web 浏览器的 ActiveX 控件,或者至少显示一个 Web 浏览器。
有这样的控制吗?
I am coding an add-on using an existing SDK which has no webview-like component but allows for ActiveX controls.
So the only idea I come up with is find an ActiveX control implementing a web browser or at least show a web browser.
Is there such control?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不要使用IE的activex控件,它充满了内存泄漏。
请参阅这篇文章了解替代方案:
Replacing .NET WebBrowser control with更好的浏览器,比如 Chrome?
Don't use the IE activex control, it's full of memory leaks.
See this post for alternatives:
Replacing .NET WebBrowser control with a better browser, like Chrome?
FireBreath 有一个 WebView 库,使用 IE activex 控件将 Web 浏览器嵌入 FireBreath 插件(充当 IE 上的 ActiveX 控件)。假设您使用的是 C++,您应该能够调整它。
FireBreath has a WebView library that uses the IE activex control to embed a web browser inside a FireBreath plugin (which acts as an ActiveX Control on IE). You should be able to adapt it, assuming you're using C++.
终于找到了。
SHDocVw.WebBrowser 就可以了。
通常路径是C:\Windows\System32\shdocvw.dll
Finally find it.
SHDocVw.WebBrowser will do.
Usually the path is C:\Windows\System32\shdocvw.dll