gpt4 book ai didi

wpf - 对 ObservableCollection 进行排序

转载 作者:行者123 更新时间:2023-12-02 21:46:59 25 4
gpt4 key购买 nike

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

提前致谢。干杯!

最佳答案

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

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];
}
}
}

Thanks to @ThomasLevesque for the more efficient Sort method shown above

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

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

关于wpf - 对 ObservableCollection<T> 进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19363710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com