如何使用 WTL 或 Windows SDK(无 MFC)创建 TitleAreaDialog?
我正在尝试使用 WTL 或 Windows SDK(请不要使用 MFC)创建 TitleAreaDialog。 从谷歌我可以找到这两个链接:
- http://www.codeproject。 com/KB/dialog/dialogheader.aspx(MFC 文章)
- http:// /www.codeproject.com/KB/dialog/taskdialogs.aspx (可疑..如何使用它)
所需的输出就像 eclipse JFace TitleAreaDialog (参见下图)。
请建议一种使用 WTL 或 Windows SDK(使用 c++)来执行此操作的方法。
谢谢
I am trying to create a TitleAreaDialog using WTL or Windows SDK (please no MFC).
From the google I am able to find these two links:
- http://www.codeproject.com/KB/dialog/dialogheader.aspx (MFC article)
- http://www.codeproject.com/KB/dialog/taskdialogs.aspx (doubtful.. how to use it)
The desired output is like the eclipse JFace TitleAreaDialog (see the below image).
Kindly suggest a way to do this using sing WTL or Windows SDK (with c++).
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于能够使用 对话框标题 链接解决它。只需检查代码两次或可能三次:),然后将其移植到 WTL。
纯c++/win sdk还有另一个非常好的例子:
xmessagebox。它是关于用一些好的东西替换默认的 Windows 消息框(尽管有一种使用标题区域 + 图标的模式)。
如果适用于 vista 或更高版本,并且只想通过复选框、单选按钮等获取非常基本的信息,请查看以下内容:Vista_TaskDialog_Wrapper 和 VGTaskDialog
Finally able to solve it using the Dialog Header link. Just went through the code twice or may be thrice :) and then ported it for WTL.
There is another very good example in pure c++/win sdk:
xmessagebox. Its about replacing default windows messagebox with something good (although there is a mode which uses title area + icon).
If working for vista or greater and just want to grab very basic information via checkboxes, radio buttons etc then have a look at this: Vista_TaskDialog_Wrapper and VGTaskDialog