Hello all
This is a pure mvvm question.
I have a datagrid in dockpane. I would like to let the user select many records (using control or shift) so I set the selectionmode to extended (the other option is single).
I set the property in the model view to object so I get something.
When I select one record the property set is activated and I get the selected record.
When I use the shift or control to add more records to the selected the property is not called.
The is working with ListBox where the property is ObservableCollection<MyRecord> but I could not find similar example with DataGrid.
Thanks
Thanks