从checkboxlist中获取项目字符串

时间:2013-03-09 15:09:41

标签: c# winforms checkboxlist

我想做这样的事情。

String s = "";
foreach (var item in checkedListBox1.Items)
{
        s = checkedListBox1.Items(item).tostring;
         // do something with the string
}

我想拥有列表框中项目的string

如何让它运行?

3 个答案:

答案 0 :(得分:1)

我还没有尝试,但我认为这应该有用。

string s = "";
foreach (var item in checkedListBox1.Items)
{
        s = item.ToString();
         // do something with the string
}

答案 1 :(得分:0)

string  s = "";
foreach (string item in checkedListBox1.Items)
{
   s = item;
   // do something with the string

}

答案 2 :(得分:0)

我相信你要找的是:

foreach (var item in checkedListBox1.Items)
{
    checkedListBox1.GetItemText(item);
}

可能不是最有用的,但here is the MSDN适用于它。