I have a Winforms App in C# with a ListView control. This ListView shows a list of TO-DO items and I am using the \'ItemSelectionChanged\' event to handle updates.
I think you need manually unselect the item in the end of your handler.
listView1.SelectedItem = null;