I know how to remove a single checkedItem
from checkedlistbox
. But now, I want to remove all the checked items in one go.
I tried this:
foreach (var item in List_Frente.CheckedItems)
{
List_Frente.Items.Remove(item);
}
But as you probably know, it gives me an error,saying that, List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change.
How may I remove all checkeditems
with a single click ?
you could do something like this:
foreach (var item in List_Frente.CheckedItems.OfType<string>().ToList())
{
List_Frente.Items.Remove(item);
}
If you want to write it all in one line:
List_Frente.CheckedItems.OfType<string>().ToList().ForEach(List_Frente.Items.Remove);
This only works if your items are of the same type, of course. Looks still crude, though.
Edit-Explanation:
ToList()
creates a new list and thus, the original CheckedItems list can be changed, as the enumerator now enumerates our newly created list, not the original. The OfType<string>()
is only there because we need something to call ToList()
on.
while (checkedListBox.CheckedItems.Count > 0) {
checkedListBox.Items.RemoveAt(checkedListBox.CheckedIndices[0]);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With