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.
如何从特定位置的列表框中删除项目而不是选择的项目?
假设我在列表框中有 4 个项目,并且我想删除索引 2 处的项目,我该如何在不选择它的情况下做到这一点。
ListBox.Items应该是一个列表。更精确的ListBox.ObjectCollection
你有没有尝试过 :
myListBox.Items.RemoveAt(2);
MSDN 中的 RemoveAt 引用
listBox1.Items.RemoveAt(position);
ListBox1.Items.RemoveAt(anyindex);