本文介绍了删除列表框中的项目的语法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有人知道吗?
Can anyone know?
what is the syntax for delete an item in listbox?
推荐答案
for (int i = listBox1.SelectedIndices.Count-1; i >= 0; i--)
{
listBox1.Items.RemoveAt(listBox1.SelectedIndices[i]);
}
OR
OR
for (int i = 0; i < listBox1.SelectedItems.Count; i++)
{
listBox1.Items.Remove(listBox1.SelectedItems[i].ToString());
i--;
}
ListBox1.Items.Remove(ListBox1.SelectedItem);
protected void remove_Click(object sender, EventArgs e)
{
if (ListBox1.SelectedItem.Text == null)
{
lblError.Text = "Please select an item for deletion.";
}
else
{
string remove = ListBox1.SelectedItem.Text;
ListBox1.Items.Remove(remove);
}
}
这篇关于删除列表框中的项目的语法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!