我试图通过索引从我的 winForms ListBox 中的条目中获取文本,但我似乎被难住了。我能想到的唯一合乎逻辑的事情是:
listBox.Items[index].ToString
但这不会返回所需的结果。
有谁知道如何做到这一点?
你的列表框中有什么?
如果列表框中有字符串值,则您的代码是正确的,但缺少大括号:
string value = listBox.Items[index].ToString();
如果列表框中的内容是某种对象,您可能需要重写 ToString() 以获得所需的结果,或者将您从列表框中获得的内容转换为所需的类型,然后访问适当的属性。
例子:
MyClass my = (MyClass)listBox.Items[index];
string value = my.SomePropertyOfMyClass;
用这个listBox.Items[index].Text
要按索引从 ListBox 的项目中获取项目,请使用这种方式
string item = listBox1.Items[0];