3

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

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

有人可以帮我吗?

4

1 回答 1

1

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

listBox1.Items[listBox1.Items.Count - 1] + " -> This string is added";
于 2013-11-06T13:17:36.970 回答