Is there a simple solution to remove specific itemS from ListView.SelectedItems?
I've a ListView bound to an ObservableCollection<MyClass>
(MyClass has some attributes e.g. Name).
Something like:
mylistview.SelectedItems.Remove(FROM myClassItem IN mylistview.SelectedItems WHERE myClassItem.Name == "test");
Of course, it doesn't work.