How can I remove a selected item from a listview?
Yet another way to remove item(s) from a ListView control (that has GridView) (in WPF)--
ListView
GridView
WPF
var selected = myList.SelectedItems.Cast().ToArray(); foreach(var item in selected) { myList.Items.Remove(item); }
where myList is the name of your ListView control
myList