如何遍历列表框中的项目,然后删除这些项目?

How do I loop through items in a list box and then remove those item?(如何遍历列表框中的项目,然后删除这些项目?)
本文介绍了如何遍历列表框中的项目,然后删除这些项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在尝试遍历列表框然后删除项目时遇到以下错误.

I'm getting the error below when trying to loop through a listbox and then remove the item.

此枚举器绑定的列表已被修改.枚举器只能在列表不变的情况下使用.

List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change.

foreach (string s in listBox1.Items)
{
    MessageBox.Show(s);
    //do stuff with (s);
    listBox1.Items.Remove(s);
}

如何删除项目并仍然循环浏览内容?

How can I remove the item and still loop through the contents?

推荐答案

要删除所有项目吗?如果是这样,请先执行 foreach,然后使用 Items.Clear() 将它们全部删除.

Do you want to remove all items? If so, do the foreach first, then just use Items.Clear() to remove all of them afterwards.

否则,可能会被索引器向后循环:

Otherwise, perhaps loop backwards by indexer:

listBox1.BeginUpdate();
try {
  for(int i = listBox1.Items.Count - 1; i >= 0 ; i--) {
    // do with listBox1.Items[i]

    listBox1.Items.RemoveAt(i);
  }
} finally {
  listBox1.EndUpdate();
}

这篇关于如何遍历列表框中的项目,然后删除这些项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)