For some reason a ListBox is not a MultiSelector. Instead it implements its own SelectedItems property.
I have a DataGrid and a ListBox and I want to treat them both as a MultiSelector, so that I can do something like this:
var selectedItems = dataGridOrListBox.SelectedItems;
Is there a way to do this?
Also is there a good reason for ListBox not being a MultiSelector?