需要一个好的非托管 C++ OCX 示例
我需要一个非常简单明了的示例来说明如何在非托管 C++ 代码中创建 OCX。 理想情况下,我想在 Office 中使用它,但任何容器(即 VB6、.NET WinForms)都应该很好。
我无法了解如何向 OCX 画布添加控件...我已经看到从 OCX 的加载事件中打开对话框的示例...但这不是我想要的...我需要 OCX 中的 GUI本身。
I need a very simple and clear example of how to create an OCX in unmanaged C++ code. Ideally, I'd like to consume it in Office, but any container (i.e. VB6, .NET WinForms) should be good.
I am having trouble seeing how I can add controls to the OCX canvas... I have seen examples of opening dialogs from within the OCX's load event... but that is not what I want... I need the GUI in the OCX itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否看过此 Microsoft 教程。 它使用MFC。 如果你想创建一个无窗口控件,你需要使用 ATL。
Have you looked at this Microsoft tutorial. It uses MFC. If you want to create a windowless control you would need to use ATL.