MFC ListBox 控件:CCheckListBox 如何通知“复选框状态已更改”?
CCheckListBox
如何通知“复选框状态已更改”?
谢谢.....
How CCheckListBox
notifies "checkbox status changed"?
Thanks.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当用户更改
CCheckListBox
中的复选框状态时,将向父窗口发送一条未记录的 MFC 特定消息:CLBN_CHKCHANGE
。我们可以像下面的例子一样处理这个消息:
注意:我们可以直接使用
ON_CLBN_CHKCHANGE
宏来代替ON_CONTROL
。更新
似乎文档< /a> 现已更新,至少提及它的存在。即使如此,添加处理程序 GUI 仍然没有列出此事件处理程序。
引用:
When the user changes a checkbox status in a
CCheckListBox
, an undocumented MFC-specific message is sent to parent window:CLBN_CHKCHANGE
.We can handle this message like in the following example:
Note: instead of
ON_CONTROL
, we can directly useON_CLBN_CHKCHANGE
macro.Update
It would seem that the documentation has now been updated to at least mention its existence. Even so, the Add Handler GUI still does not list this event handler.
To quote: