是否可以将附加值和标题添加到checkedListBox
项目
checkedListBox1.Items.Insert(0,"title");
如何增加值(value)?
最佳答案
checkedListBox1.Items.Insert(0, new ListBoxItem("text", "value"));
关于c# - 如何为checkedListBox项目添加值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34534345/