列表框以及如何对所选项目执行操作

时间:2009-12-11 15:29:21

标签: c# winforms listbox

嗨我有这个程序我试图制作

但是现在我试图添加一个删除项目的选项(只有选中的项目)。

提前

thanx

2 个答案:

答案 0 :(得分:1)

删除所选项目:

while (listBox1.SelectedIndices.Count > 0)
    listBox1.Items.RemoveAt(listBox1.SelectedIndices[0]);

答案 1 :(得分:0)

protected void Button2_Click(object sender, EventArgs e)
{
    for(int i = ListBox1.Items.Count -1; i>=0; i--)
    {
        if (ListBox1.Items[i].Selected)
        {
            ListBox1.Items.Remove(ListBox1.Items[i]);
        }
    }
}

这也适用于删除