在 MFC 中禁用 CheckedListBox 中的项目
CheckedListBox::Enable()
启用/禁用项目的行为应该类似于 GetDlgItem(checkedbox)->EnableWindow(False)
,对于一个简单的复选框,我的意思是对于最后一个,该项目具有禁用项目的外观,但对于选中列表框,该项目具有正常外观,但我无法选择它。
那么,禁用 CheckedListBox 中的项目不具有灰色方面是正常的吗?
Does CheckedListBox::Enable()
to enable/disable items should behave like GetDlgItem(checkedbox)->EnableWindow(False)
, for a simple checkedbox, I mean for the last one, the item has the aspect of a disabled item, but for checkedlistbox the item has a normal aspect but I can't select it.
So is this normal for disable items from a CheckedListBox to not have a gray aspect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽量避免使用
GetDlgItem
CCheckedListBox::Enable()
用于根据传入的索引启用和禁用列表中的各个复选框。EnableWindow
用于启用或禁用整个控件。对于复选框,我希望它们是相似的,但是CCheckedListBox
可能会以与独立复选框控件的行为方式不同的方式处理其管理其复选框列表项的方式。如果您想在更新视觉方面时执行与默认行为不同的操作,您可以覆盖
DrawItem
并使用所有者绘制样式。Try to avoid using
GetDlgItem
CCheckedListBox::Enable()
is used to enable and disabled the individual checkbox in the list based on the index you pass into it.EnableWindow
is intended to enable or disable the entire control. In the case of a checkbox I would expect these to be similar however theCCheckedListBox
may handle how it manages it's check box list items differently than how an independent checkbox control would behave.You can probably override
DrawItem
and use owner drawn style if you want to do something different than the default behavior when updating visual aspects.