gpt4 book ai didi

c# - CheckedListBox 只允许选中一个项目

转载 作者:可可西里 更新时间:2023-11-01 08:15:07 25 4
gpt4 key购买 nike

在我的 CheckedListBox 应用程序中,我只想允许检查一个项目。

我已经设置了这些属性

checkOnClick = true;
SelectionMode = One;

任何建议将不胜感激

最佳答案

取消选中 ItemCheck 事件中的所有其他项目,如下所示:

private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e) {
for (int ix = 0; ix < checkedListBox1.Items.Count; ++ix)
if (ix != e.Index) checkedListBox1.SetItemChecked(ix, false);
}

关于c# - CheckedListBox 只允许选中一个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10553323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com