Any idea on how to sort a CompositeCollection?

徘徊边缘 提交于 2019-12-11 04:59:11

问题


I have a CompositeCollection that consists of ObservableCollections of two types: Companies and Contacts. Contact has a property FullName while Company has a property Name.

I want to apply sorting so the collections are mixed by their types but sorted by their name, example:

Itzhak Perlman
John Doe
Microsoft
Sarah Moore
StackOverflow
Walter Richardson

Note that I bound the ItemsControl to a CollectionViewSource that its Source is set the CompositeCollection, it's view becomes a CompositeCollectionView, it's an internal type, if I explicitly set its type to ListCollectionView, it only contains the CollectionContainers as its items.

Desired solution is a workaround to enable sorting, filtering and grouping on a CompositeCollections, I don't care to override and create my own CompositeCollection, I just don't know how I can override this and enable its functionality in xaml.


回答1:


One can make use of IComparable and a interface for the object to be added into the collection. Then one can sort by

 IComparable getName()  // this should return company/employee name

in the compare method you can sort as per your requirement




回答2:


Who said I must get advantage of the thingy called 'CompositeCollection'?
I decided not to use a CompositeCollection.
I am just creating an ObservableCollection(of Object) mixed of the two types, and binding the CollectionViewSource to it.

Update

By inheriting CompositeCollection and implenting IBindingList, sorting can be enabled.



来源:https://stackoverflow.com/questions/2155395/any-idea-on-how-to-sort-a-compositecollection

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!