DLGTEMPLATE 到 CWnd 派生控件
是否可以采用 DLGTEMPLATE 并将其用作 CWnd 派生控件以放置在任何其他 CWnd 中?
我有一个对话框模板,我想在我的 CDockablePanes 之一上使用
Is it possible to take a DLGTEMPLATE and use it as a CWnd-derived control for placing in any other CWnd?
I have a dialog template that I want to use on one of my CDockablePanes
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题不清楚,请重新表述一下。 如果您询问是否可以从 DLGTEMPLATE 实例化一个控件并将该实例化放在另一个对话框上或作为另一个控件的子控件,那么可以。 不过,它是一个主要的 PITA,如果您想了解详细信息,请阅读 Old New Thing 博客(有关对话框模板的系列)。 如果您只是想让它工作,请使用 MSDN 示例之一中的 CDlgTempl 类; 从这里开始:http://support.microsoft.com/kb/155257。 它不会产生 CWnd 派生的控件,但如果您问我认为您是什么,那么它们不是您想要的; 你将得到一个 CDialog 派生对象(显然,它本身是从 CWnd 派生的,因此从这个意义上说,它确实满足了你的要求)。
Your question isn't clear, please rephrase. If you're asking if it's possible to instantiate a control from a DLGTEMPLATE and put that instantiation on another dialog or as the child of another control, then yes, it is. It's a major PITA though, read through the Old New Thing blog (the series on dialog templates) if you want to know the details. If you just want to get it to work, use the CDlgTempl class from one of the MSDN samples; start here: http://support.microsoft.com/kb/155257. It won't make CWnd-derived controls but they're not what you want if you're asking what I think you are; you'll get a CDialog-derived object (which is itself derived from CWnd obviously, so in that sense it does give you what you ask).