C# 中 CheckListBox 的奇怪问题

发布于 2024-12-21 08:09:35 字数 715 浏览 0 评论 0原文

我正在使用的应用程序中有很多复选框。因此,我决定改用 CheckedListBox。我使用下面的代码迭代列表...

private void CheckedListBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
        if (CheckedListBox1.CheckedItems.Count != 0)
        {
            string x = "";
            for (int x = 0; x <= ServicesCheckedListBox3.CheckedItems.Count - 1; x++)
            {
                x = x + "Checked Item " + (x + 1).ToString() + " = " +                         ServicesCheckedListBox3.CheckedItems[x].ToString() + "\n";
            }
            Line.Add(x);
        }
    }

输出给了我这个...

System.Collections.Generic.List`1[System.String].

我很新,从未见过这个。该应用程序运行良好,但输出不正确。有什么建议吗?

I have quite a few check boxes in an application I'm playing with. So, I decided to use a CheckedListBox instead. I iterate through the list with the code below...

private void CheckedListBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
        if (CheckedListBox1.CheckedItems.Count != 0)
        {
            string x = "";
            for (int x = 0; x <= ServicesCheckedListBox3.CheckedItems.Count - 1; x++)
            {
                x = x + "Checked Item " + (x + 1).ToString() + " = " +                         ServicesCheckedListBox3.CheckedItems[x].ToString() + "\n";
            }
            Line.Add(x);
        }
    }

The out put gives me this...

System.Collections.Generic.List`1[System.String].

I'm very new and have never seen this. The application runs fine but the out put doesn't come out right. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

泅人 2024-12-28 08:09:35
private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    string x="";
    foreach(string chk in checkedListBox1.CheckedItems)
    {
        x = x + "Checked Item " + checkedListBox1.Items.IndexOf(chk).ToString() + " = " + chk + "\n";
    }
    MessageBox.Show(x);
}
private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    string x="";
    foreach(string chk in checkedListBox1.CheckedItems)
    {
        x = x + "Checked Item " + checkedListBox1.Items.IndexOf(chk).ToString() + " = " + chk + "\n";
    }
    MessageBox.Show(x);
}
白色秋天 2024-12-28 08:09:35

使用 foreach 迭代 CheckedItems

foreach(string item in ServicesCheckedListBox3.CheckedItems)
{
    Line.Add(item)
}

Use foreach to iterate through CheckedItems

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