如何将自定义mfc控件添加到对话框窗口?
我从 MFC 中的 CStatic 派生了一个类。但我不知道如何将其添加到我的对话框窗口中。 我正在开发的这个 MFC 应用程序是一个基于对话框的应用程序。
在 Gtk+ 或 Qt 中,我们可以使用布局并向其中添加小部件,但在 mfc 中似乎不是这样的机制。我想知道如何将自定义控件添加到另一个 GUI 元素!
如果可以的话请给我一个简单的例子。 谢谢
I've derived a class from CStatic in MFC. But I don't know how to add it to my dialog window.
This mfc application that I'm working on is a dialog based application.
In Gtk+ or Qt we could use layouts and add our widgets to them, but in mfc it doesn't seem to be such a mechanism. I'm wondering how is it possible for an custom made control to be added to another GUI element!!!
Please give me a simple example if you can.
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找的技术是子类化(MSDN)。
该页面上也有一个很好的示例。
I think the technique you are looking for is subclassing (MSDN).
There is a good sample on that page too.