本文介绍了如何删除列表框中选中了多项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的windows窗体包含两个列表框。 listBox1中包含了一些项,并listbox2是空的。当我按表单上的按钮,从ListBox1中则选中了多项应该从ListBox1中被删除,复制到Listbox2。
My windows form contains two listboxes. Listbox1 contains some items in it and listbox2 is empty. When I press a button on the form, then multiple selected items from listbox1 should be removed from Listbox1 and copied to Listbox2.
我试着用foreach循环的listbox1.SelectedItems但从列表中删除仅1项。
I tried with foreach loop on listbox1.SelectedItems but it removes only 1 item from list.
任何人有解决方案或代码呢?
Anyone has solution or code for this?
推荐答案
您可以做在一个单一的循环。你应该将selectedIndices使用一个简单的和循环向后:
You could do all in a single loop. You should use a simple for and loop backwards on SelectedIndices:
private void button1_Click(object sender, EventArgs e)
{
for(int x = listBox1.SelectedIndices.Count - 1; x>= 0; x--)
{
int idx = listBox1.SelectedIndices[x];
listBox2.Items.Add(listBox1.Items[idx]);
listBox1.Items.RemoveAt(idx);
}
}
这篇关于如何删除列表框中选中了多项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!