C#编辑列表框中的最后一项而不选择它

时间:2013-11-06 13:03:43

标签: c# listbox

我正在尝试编辑列表框中的最后一项而不选择它。因为我无法选择列表中的项目(这是我的应用程序的默认值)。这是一个Windows窗体应用程序。

通常我会做类似的事情:listBox1.SelectedIndex = listBox1.Items[listBox1.SelectedIndex] + " -> This string is added"但是因为我无法选择任何东西,所以这不起作用。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

您可以通过索引从Items集合中获取最后一项:

listBox1.Items[listBox1.Items.Count - 1] + " -> This string is added";