如何在CheckBoxList中获取索引的值? C#

时间:2013-07-30 11:28:28

标签: c# checkedlistbox

我试图在checkbox值中获取索引的值,但它似乎为null。

 myCheckedListBox.Items.Add("bla1");
 myCheckedListBox.Items.Add("bla2");
 myCheckedListBox.Items.Add("bla3");
 myCheckedListBox.Items.Add("bla4");

现在我想得到索引2的值

代码是

string value = myCheckedListBox.Items[2].ToString();

我希望值= bla3但它是null?

我错过了什么?

2 个答案:

答案 0 :(得分:2)

尝试

string value = myCheckedListBox.Items[2].ToString();

mhCheckedBox与myCheckedListBox不同:)

答案 1 :(得分:0)

((DataRowView)checkedListBox1.Items[index])[0]