Cysharp/ObservableCollections をベースにしたUI表示用の同期ビュー
Rev. | 87a8ee4d858ecff8f6b35b7fd7fc72a5882fadbf |
---|---|
大小 | 405 字节 |
时间 | 2022-10-20 15:32:38 |
作者 | yoshy |
Log Message | [MOD] ビュー破棄時のトレースログを無効化
|
using ObservableCollections;
namespace CleanAuLait.ObservableCollectionsMod
{
public interface ISortableSynchronizedCoupleView<T, TKey, TView> : ISynchronizedCoupleView<T, TView>
where TKey : notnull
{
void ConnectSource(IObservableCollection<T> source, IComparer<(TKey, T, TView)> comparer);
void Sort(IComparer<(TKey id, T value, TView view)> comparer);
}
}