C#中listbox中选中多项,并删除??、

多选,删除选中的
点击按钮。删除选中的多项

可以在listbox上加个复选框,然后递归listbox的复选框被选中的再删除。
温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2016-07-01
1.SelectionMode 改成可以多选
2.利用KeyDown事件:
private void listBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Delete)
{
for (int i = listBox1.SelectedItems.Count - 1; i > -1; i--)
{
listBox1.Items.Remove(listBox1.SelectedItems[i]);
}
}
}本回答被提问者和网友采纳
第2个回答  2013-01-07
while(listbox.selectionindex!=-1)
listbox.items.remove(listbox.selectionitem);
何需那么复杂.如果发现有选中的就一直删除.

C#中怎样把listbox里的多个选中项一次性删除?
第一步、在开始菜单界面,在“编辑”功能区,点击“选择”,然后点击下拉菜单中的“选择对象”。第二步、拖动鼠标选中,希望删除的所有形状,放开鼠标后,形状会被全部选中。第三步、全部选中后,按Delete键(非Del键)删除即可。

C#怎样把listbox里的多个选中项一次性删除?
} 这样明显有问题 你item里面有10个元素 你删了3个 还有几个? remove 1之后 原来的2就变成了1 原来的1被移除了 你在移除2 就是移除的是3 ListBox a1 = new ListBox();object[] selected_objs = new object[a1.SelectedItems.Count];a1.SelectedItems.CopyTo(selected_objs, 0);foreach (...

C# 怎样把 listbox 里的多个选中项 一次性删除
listBox_1.Items.RemoveAt(a);\/\/根据索引删除第一个项直到最后一个项被删除 } }

C#中winform的列表框如何删除多个选中项?
for (int i=listBox1.Items.Count-1; i>-1; i--){ if (listBox1.GetSelected(i)){ listBox1.Items.RemoveAt(i);} } 需要注意两点。1。 GetSelected(i) 获得选中的状态 2。 循环遍历需要用倒序, 不然删除选项后, index会变化, 造成后删除的序号错误。

c#中如何清除listBox中的选定项?
方法1(从网上搜的)void Btn_DeleteClick(object sender, System.EventArgs e){ ListBox.SelectedIndexCollection indices =this.listBox1.SelectedIndices;int selected=indices.Count;if(indices.Count>0){ for(int n=selected -1;n>=0;n--){ int index =indices[n];listBox1.Items.RemoveAt(...

C# 如何清空listbox里的值
private void button1_Click(object sender, EventArgs e) { listBox1.Items.Clear(); }效果如下:MSDN中Clear()函数介绍:Clear()从集合中移除所有项。备注当从列表移除项时,将丢失有关被删除项的所有信息。 若要从 ListBox 中移除单个项,请使用 Remove 或 RemoveAt 方法。

C#里我写了一段清除ListBok里面重复的项的代码,但是不够简洁,数据量大...
第二种方式,是通过建立一个Dictonary对象来缓存以出现过的值,在循环过程中把所有包含在缓存中的项都删除:private void button2_Click(object sender, EventArgs e){ ListBox.ObjectCollection items = this.listBox1.Items; Dictionary exstis = new Dictionary(); for (int i = count -...

c#中listbox中选中某一行,如何将它删除
ListBox.Items.RemoveAt(Index)Index是行号(0开始)ListBox.Items.RemoveAt(ListBox.SelectIndex)是删除当前选中的行(注意保证SelectIndex>=0)

c#listbox怎么选择全部行?
for (int i = 0; i < listBox1.Items.Count; i++) { listBox1.SelectedItem = listBox1.Items[i]; }首先要将listBox的selectionMode属性设置为MultiSimple或者MultiExtended后执行上述代码即可,不过如果你只是想做列表中的多项选择功能的话推荐用CheckedListBox控件,更加方便 欢迎追问 ...

c# listbox 右键删除菜单进行删除该项的事件,还要把txt文本里的内容同 ...
e){ if ( listBox1.SelectedIndex<0) return;listBox1.Items.RemoveAt(listBox1.SelectedIndex);StreamWriter sw = new StreamWriter("c:\\a.txt",false);foreach (string item in listBox1.Items){ sw.WriteLine(item);} sw.Close;sw.Dispose();} 把代码区的粘贴到你的删除事件中即可。

相似回答