选中的列表框

发布于 2024-08-28 20:53:29 字数 468 浏览 6 评论 0原文

当选中列表框中的所有项目均未选中时,我想执行一些操作。只有 ItemCheck 事件,但检查状态直到 ItemCheck 事件发生后才会更新。 我有一个按钮,当选中列表框中的所有项目均未选中时,我想将其启用为 false

System::Void frmMain::clbInstPrgs_ItemCheck(System::Object^  sender, System::Windows::Forms::ItemCheckEventArgs^  e) {
 if ((clbInstPrgs->CheckedIndices->Count == 1)&&(rbnSelectSaveProgramms->Enabled)) {
        btnNext->Enabled = false;
     } else {
        btnNext->Enabled = true;
 }
    return;
}

i want to do some actions when all items in checked list box are unchecked. There is only event ItemCheck but the check state is not updated until after the ItemCheck event occurs.
I have a button and i want to do its enabled false when all items unchecked in checked list box

System::Void frmMain::clbInstPrgs_ItemCheck(System::Object^  sender, System::Windows::Forms::ItemCheckEventArgs^  e) {
 if ((clbInstPrgs->CheckedIndices->Count == 1)&&(rbnSelectSaveProgramms->Enabled)) {
        btnNext->Enabled = false;
     } else {
        btnNext->Enabled = true;
 }
    return;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

痴意少年 2024-09-04 20:53:30

如果您只选中了一项,并且由于取消选中某项而处于事件处理程序中,则最终将不会检查任何内容。

这是VB中的答案。应该很容易转换。

btnNext.Enabled = Not (clbInstPrgs.CheckedItems.Count = 1 AndAlso e.NewValue = CheckState.Unchecked)

If you only have one item checked, and you are in the event handler because you are unchecking something, you will end up with nothing checked.

Here is a answer in VB. Should convert easily.

btnNext.Enabled = Not (clbInstPrgs.CheckedItems.Count = 1 AndAlso e.NewValue = CheckState.Unchecked)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文