internal ItemPropertyChangedEventArgs(TItem?item, SourceAndValue <INotifyPropertyChanged?, TValue> sourceAndValue, string propertyName)
     : base(propertyName)
 {
     this.SourceAndValue = sourceAndValue;
     this.Item           = item;
 }
Ejemplo n.º 2
0
 /// <inheritdoc/>
 public bool Equals(SourceAndValue <TSource, TValue> other)
 {
     return(Equals(this.Source, other.Source) && this.Value.Equals(other.Value));
 }