• R/O
  • HTTP
  • SSH
  • HTTPS

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Cysharp/ObservableCollections をベースにしたUI表示用の同期ビュー


File Info

Rev. 87a8ee4d858ecff8f6b35b7fd7fc72a5882fadbf
大小 405 字节
时间 2022-10-20 15:32:38
作者 yoshy
Log Message

[MOD] ビュー破棄時のトレースログを無効化

Content

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