对ObservableCollection <t> </t>进行排序

时间:2013-10-14 15:26:52

标签: wpf listview sorting treeview observablecollection

我有两个独立的可观察集合,其中T是用户定义的类。这些集合绑定到列表视图和树视图。我想按排序顺序显示集合的项目。我似乎没有在列表和树视图中找到任何排序函数。可以在运行时删除/添加集合中的元素。实现这一目标的最佳方法是什么?

提前致谢。干杯!

2 个答案:

答案 0 :(得分:4)

通过扩展Move类,您可以使用内部ObservableCollection<T>方法轻松实现此行为。这是一个简化的例子:

public class SortableObservableCollection<T> : ObservableCollection<T>
{
    public SortableObservableCollection(IEnumerable<T> collection) : 
        base(collection) { }

    public SortableObservableCollection() : base() { }

    public void Sort<TKey>(Func<T, TKey> keySelector)
    {
        Sort(Items.OrderBy(keySelector));
    }

    public void Sort<TKey>(Func<T, TKey> keySelector, IComparer<TKey> comparer)
    {
        Sort(Items.OrderBy(keySelector, comparer));
    }

    public void SortDescending<TKey>(Func<T, TKey> keySelector)
    {
        Sort(Items.OrderByDescending(keySelector));
    }

    public void SortDescending<TKey>(Func<T, TKey> keySelector, 
        IComparer<TKey> comparer)
    {
        Sort(Items.OrderByDescending(keySelector, comparer));
    }

    public void Sort(IEnumerable<T> sortedItems)
    {
        List<T> sortedItemsList = sortedItems.ToList();
        for (int i = 0; i < sortedItemsList.Count; i++)
        {
            Items[i] = sortedItemsList[i];
        }
    }
}
  

感谢@ThomasLevesque提供了更有效的Sort方法,如上所示

然后您可以像这样使用它:

YourCollection.Sort(c => c.PropertyToSortBy);

答案 1 :(得分:0)

QuadTree

可以减少CollectionChanged事件的数量,以获得更好的性能。