如何在选中列表框中选择并列出多个项目 C#
我想知道如何修复当我尝试创建选中列表框、将列表加载到其中,然后尝试在另一个列表框中显示所有选中项目时遇到的错误。例如,checkedlistbox1 显示 ABC AAC ABB,我选中 ABC 和 AAC,当我按下按钮时,我希望它将 ABC 和 AAC 添加到 listbox1,但它给我的只是“(集合)”
var selected = checkedListBox1.SelectedItems;
listBox1.Items.Add(selected);
I am wondering how I can fix an error I am experiencing when I try to create a checkedlistbox, load a list into it, then attempt to display all the checked items in another listbox. For example, checkedlistbox1 displays ABC AAC ABB and I checkmark ABC and AAC, when I push a button, I want it to add ABC and AAC to listbox1 but all it gives me is "(collection)"
var selected = checkedListBox1.SelectedItems;
listBox1.Items.Add(selected);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须迭代 CheckedItems 并逐一添加每个项目:
You have to iterate the CheckedItems and add each item one-by-one: