如何通过索引从列表框中获取文本?

时间:2012-07-06 22:27:54

标签: c# winforms

我试图通过索引从winForms ListBox中的条目中获取文本,但我似乎很难过。我能想到的唯一合乎逻辑的是:

listBox.Items[index].ToString

但这不会返回所需的结果。

有谁知道怎么做?

3 个答案:

答案 0 :(得分:8)

你的列表框中有什么?

如果列表框中有字符串值,则代码是正确的,除了缺少大括号:

string value = listBox.Items[index].ToString();

如果列表框中的内容是某种对象,您可能需要重写ToString()以获得所需的结果,或者将您从列表框中获取的内容转换为所需的类型,然后访问相应的属性。

示例:

MyClass my = (MyClass)listBox.Items[index];
string value = my.SomePropertyOfMyClass;

答案 1 :(得分:0)

使用此listBox.Items[index].Text

答案 2 :(得分:0)

要通过索引从ListBox的项目中获取项目,请使用此方法

string item = listBox1.Items[0];