如何制作网络浏览器工具栏?
如何用 C++ 制作 Web 浏览器工具栏。 在没有附加库的 IE 的 dev-C++ 中?
How do I make a Web Browser toolbar in C++.
in dev-C++ for I.E with no addon libraries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
既然你使用 Dev C++,我假设你想制作 IE 插件?
如果是这样的话,这应该可以帮助您开始:
创建 Internet Explorer 加载项:工具栏 msdn.microsoft.com
您还应该在 插件开发人员指南位于 IE 博客。
Since you use Dev C++ I am assuming you want to make IE Addons?
If thats the case, this should get you started:
Creating Add-ons for Internet Explorer: Toolbars on msdn.microsoft.com
And you should also take a loot at the Guidelines for add-on developers over at IE Blog.
不添加库是什么意思? win32 是一个外部库,libX11 等也是如此。Dev-C++ 让我觉得你想要纯 win32。在这种情况下,您需要通用控件。我在快速谷歌后发现了这个: http://hyper.sunjapan.com .cn/~hz/win32/commctl2.htm 。希望有帮助!
What do you mean by no add on libraries? win32 is an external library, as is libX11, etc. Dev-C++ makes me think that you want pure win32. In that case, you want the common controls. I found this after a quick google: http://hyper.sunjapan.com.cn/~hz/win32/commctl2.htm . Hopefully it helps!
www.besttoolbars.net 提供了一个创建工具栏的平台,他们的解决方案非常强大,并且具有 Javascript API,因此您可以使用 Javascript 编写所有功能,同时在 C++ 上创建工具栏。
www.besttoolbars.net provides a platfrom for creating toolbar their solution is quite robust and has Javascript API so that you can write all the functionality using Javascript while the toolbar is created on C++.