0

如何从特定位置的列表框中删除项目而不是选择的项目?

假设我在列表框中有 4 个项目,并且我想删除索引 2 处的项目,我该如何在不选择它的情况下做到这一点。

4

3 回答 3

3

ListBox.Items应该是一个列表。更精确的ListBox.ObjectCollection

你有没有尝试过 :

myListBox.Items.RemoveAt(2);

MSDN 中的 RemoveAt 引用

于 2012-04-04T07:26:00.850 回答
1
listBox1.Items.RemoveAt(position);
于 2012-04-04T07:25:56.150 回答
1
ListBox1.Items.RemoveAt(anyindex);
于 2012-04-04T07:28:50.330 回答