I'm a bit confused about DataGridCollectionView and DataGridCollectionViewSource.
I want to implement a simple "DeleteRow" method on my grid that deletes the currently seleted row(s).
In XAML, I have defined a DataGridCollectionViewSource that is bound to my data collection(of type IEnumerable). The ItemsSource on the grid is in turn bound to this resource.
But only the DataGridCollectionView has a Remove method, and I can't define a DataGridCollectionViewSource in XAML.
What am I doing wrong here?