예제 #1
0
 public PropertyErrorsChangedEventArgs(IPropertyErrors propertyErrors, PropertyErrorsChangeType type)
 {
     PropertyErrors = propertyErrors;
     Type           = type;
 }
예제 #2
0
 private void RaisePropertyErrorsChanged(IPropertyErrors propertyErrors, PropertyErrorsChangeType type)
 {
     PropertyErrorsChanged?.Invoke(this, new PropertyErrorsChangedEventArgs(propertyErrors, type));
     NotifyErrorsChanged();
 }