I have a ListView in Virtual Mode. I wanna to access SelectedItems property.
But when I use ListView1.SelectedItems , I receive the following Exception :
Cannot access the selected items collection when the ListView is in virtual mode
How can I access to ListView1.SelectedItems in VirtualMode.
I’ve done it by the following code, but it has an exception when more than one item are selected:
Whenever you remove item(s) from a collection, always iterate from the largest index to the smallest index, like this:
This is because every time you remove an item in a collection, the index will change if you do not iterate from the largest to the smallest index.