我想清除listbox winforms中的一个项目c#

时间:2011-03-05 08:30:51

标签: c# winforms listbox indexing

我想清除列表框中的一个项目winforms c#。

如何获取该项目的索引?

1 个答案:

答案 0 :(得分:3)

ListBox有一个名为SelectedIndex的属性。要删除当前所选项目,您只需调用RemoveAt(int)方法。

示例:

int selectedIndex = myListBox.SelectedIndex;
if(selectedIndex >=0)
   myListBox.Items.RemoveAt(selectedIndex);