Ejemplo n.º 1
0
 public static CalculatedProperty <T> Create <T>(
     IProperty <INotifyPropertyChanged, T> s1, IProperty <NotifyPropertyChanged, T> target)
 {
     return(new CalculatedProperty <T>(target, t => MultiBinding.Create(s1, t)));
 }