Beispiel #1
0
 public static void Bind <T>(this IBinder This, IReadOnlyReactiveCollection <T> source, ListControl target)
 {
     if (target != null)
     {
         This.Bind(source.ObserveCurrentAddRemove(), target);
     }
 }
 public static IDisposable BindTo <T>(this IReadOnlyReactiveCollection <T> This, ListControl listControl) =>
 This.ObserveCurrentAddRemove().BindTo(listControl);