Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编辑列表框中的最后一项而不选择它。因为我无法选择列表中的项目(这是我的应用程序的默认设置)。这是一个 Windows 窗体应用程序。
通常我会做类似的事情:listBox1.SelectedIndex = listBox1.Items[listBox1.SelectedIndex] + " -> This string is added"但因为我不能选择任何东西,所以这不起作用。
listBox1.SelectedIndex = listBox1.Items[listBox1.SelectedIndex] + " -> This string is added"
有人可以帮我吗?
Items您可以按索引从集合中获取最后一项:
Items
listBox1.Items[listBox1.Items.Count - 1] + " -> This string is added";