在C# windows mobile智能设备应用程序中嵌入IWebbrowser2 ATL界面控件
我们开发了一个ATL智能设备项目,用于将网页保存在Windows移动设备本地。该应用程序使用原生的IWebbrowser2 ATL界面控件来浏览网页并保存网页完成。
现在我们需要使用 C# 来设计和开发 UI 和其他用户界面控件,并且我们已经有一些 C# 中可用的 UI 模块。
所以请为我们提供一种将原生IWebbrowser2 ATL界面控件嵌入到C#智能设备项目中的方法。
We have developed an ATL smart device project for to save the web page locally in windows mobile device. The application uses native IWebbrowser2 ATL interface control to browse the web page and save the web page complete.
Now we need to have our UI and other user interface controls to be designed and developed using C# also we have some UI module already available in C#.
So please provide us a method to embed native IWebbrowser2 ATL interface control to the C# smart device project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于它是一个 COM 组件,因此您可以遵循与任何其他 COM 组件相同的方法为其编写包装器。 MSDN 上有一篇文章对此进行了介绍。
Since it's a COM component, you would follow the same methodology of any other COM component by writing a wrapper for it. MSDN has an article covering it here.