I have a ListView with a couple of items in it. When the ListView looses focus, the last selected ListViewItem is still \"selected\" with a gray background. I would like
Another effective way to approach this would be:
foreach (ListViewItem i in myListView.SelectedItems) { i.Selected = false; }