ListBox 循环删除当前项

 for (int j = 0; j < this.listQuery.Items.Count; j++)
 {
               listQuery.Items.Remove(this.listQuery.Items[j]);
                    j--;
 }

原文地址:https://www.cnblogs.com/xbding/p/2864617.html