如何在选中列表框中选择并列出多个项目 C#

发布于 2024-10-31 21:03:13 字数 263 浏览 4 评论 0原文

我想知道如何修复当我尝试创建选中列表框、将列表加载到其中,然后尝试在另一个列表框中显示所有选中项目时遇到的错误。例如,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 技术交流群。

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

发布评论

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

评论(1

带刺的爱情 2024-11-07 21:03:13

您必须迭代 CheckedItems 并逐一添加每个项目:

    private void button1_Click(object sender, EventArgs e) {
        listBox1.Items.Clear();
        foreach (var item in checkedListBox1.CheckedItems) {
            listBox1.Items.Add(item);
        }
    }

You have to iterate the CheckedItems and add each item one-by-one:

    private void button1_Click(object sender, EventArgs e) {
        listBox1.Items.Clear();
        foreach (var item in checkedListBox1.CheckedItems) {
            listBox1.Items.Add(item);
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文