如何在动态MFC对话框中制作复选框?
我必须创建一个动态对话框,并使用文章 在内存中创建模板。我已经创建了按钮并进行了编辑,但我不知道如何制作复选框。你知道怎么做吗?
在DLGITEMTEMPLATE文章中只有定义了以下类型:
0x0080
按钮0x0081
编辑0x0082
静态0x0083
列表框0x0084
滚动bar0x0085
组合框
谢谢!
I have to create a dynamic dialog and used therefor the procedure described in the article Creating a Template in Memory. I already created buttons and edits but I don't know how I can make check-box. Do you know how?
In the DLGITEMTEMPLATE article there are only following types defined:
0x0080
Button0x0081
Edit0x0082
Static0x0083
List box0x0084
Scroll bar0x0085
Combo box
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
复选框是具有 BS_CHECKBOX 或 BS_AUTOCHECKBOX 样式的按钮
,有关详细信息,请参阅 http://msdn.microsoft.com/en-us/library/bb775951(VS.85).aspx
A checkbox is a Button with the BS_CHECKBOX or BS_AUTOCHECKBOX style
for more information, see http://msdn.microsoft.com/en-us/library/bb775951(VS.85).aspx
复选框是具有 BS_CHECKBOX 样式的按钮。
A checkbox is a button with the BS_CHECKBOX style.