C# winform c# checkedlistbox可以清空吗

2025-04-29 04:54:52
推荐回答(1个)
回答1:

可以清空,
checkedListBox1.Items.Clear();

添加项
checkedListBox1.Items.Add("项");