在 MFC 中禁用 CheckedListBox 中的项目

发布于 2024-12-03 19:11:01 字数 231 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红ご颜醉 2024-12-10 19:11:01

尽量避免使用 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 the CCheckedListBox 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文