浏览器助手对象 UI
我是一名新手,致力于开发 IE 扩展,该扩展将在某些网页中显示为覆盖层。 我开始在 VS2008 中创建一个简单的 BHO(使用 C++),但我想知道如何将 UI 合并到项目中。 有任何想法吗? 只是为了给您一个想法,我正在寻找类似于 Stickis 开发的叠加层 http://www.stickis.com/faq/
谢谢
I am a newbie working towards developing an IE extension that would appear as an overlay in certain webpages. I am getting started by creating a simple BHO in VS2008 (using C++), but I am wondering how UI may be incorporated within the project. Any ideas?
Just to give you an idea, I'm looking for overlays similar to what was developed by stickis
http://www.stickis.com/faq/
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您有两个实际选择:
1> 将您的 UI 作为 HTML 注入到页面中。
2> 将您的 UI(使用 Windows 图形 API)覆盖在页面顶部。
恐怕这些都不是超级简单的。 不幸的是,做 UI 通常是构建 IE 插件中最难的部分。
关键问题是您是否需要 BHO。 在上下文菜单扩展和 IE8 加速器之间,您可能会发现可以让 IE 完成所有繁重的工作。 请参阅 www.enhanceie.com/ie/dev.asp 了解更多信息。
You have two real options:
1> Inject your UI into the page as HTML.
2> Overlay your UI (using Windows graphics APIs) over top of the page.
Neither of these is super-simple, I'm afraid. Unfortunately, doing UI is usually the hardest part of building IE addons.
The key question is whether you need a BHO at all. Between context-menu extensions and IE8 Accelerators, you may find that you can let IE do all of the heavy lifting. See www.enhanceie.com/ie/dev.asp for more info.
使用 CreateWIndowEx() 正是我正在寻找的:)
Using CreateWIndowEx() was what I was looking for :)