Another question related to this one.
I have a List that is the datacontext of my MainWindow. I use that list to populate a ListBox and a ComboBox. When I sort the items, both the ComboBox and the ListView get updated all right. But now I need the combobox to be sorted in a different way than the ListView. I. E. If the object were a Person, in the ComboBox, I'd need to sort them by LastName, but in the ListView, by birthday. How can I achieve this?
Thanks!