• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

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


File Info

Révision 87a8ee4d858ecff8f6b35b7fd7fc72a5882fadbf
Taille 405 octets
l'heure 2022-10-20 15:32:38
Auteur yoshy
Message de Log

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