Hi,
I'm using MVVM to bind my collection to a grid, I can get the current item by using ICollectionView, however I need to allow the grid to select multiple rows, and so I need to be notified when the selection changes, but I can't bind to the SelectedItems property as it's not a dependency property, so is there a way to achieve this?
Ideally I would like to bind a property of each item to the 'selected' state for the corresponding grid row.
Thanks,
Brian