如何开始在 C# 中创建 BHO?
我需要在 C# 中创建一个 BHO。 除了典型的 Microsoft C++ 示例之外,还有其他可用的文档吗?
我该如何开始? 谢谢...
I need to create a BHO in C#.
Any documentation available other than the typical Microsoft C++ example?
How do I start?
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上这并不困难,但是您必须亲自动手使用 COM 互操作。我最近刚刚为业务线应用程序执行了此操作。基本上,您必须在加载项中实现 IObjectWithSite,然后您只需连接到 WebBrowser 事件,就像使用嵌入式 WebBrowser 控件一样。
这是一个例子。 http://www.15seconds.com/issue/040331.htm
It's not that difficult really, but you will have to get your hands dirty with COM interop. I just recently did this for a line-of-business application. Basically you gotta implement IObjectWithSite in your add-in and from there you just hook up to the WebBrowser events the same as you would with an embedded WebBrowser control.
Here is an example. http://www.15seconds.com/issue/040331.htm