Exemple #1
0
 public ValidatedEventArgs(RoutedEvent routedEvent, string messageKey, StatusReasons reason, Action action = null) : base(routedEvent)
 {
     MessageKey = messageKey;
     Reason     = reason;
     Action     = action;
 }
Exemple #2
0
 public ValidatedEventArgs(string messageKey, StatusReasons reason, Action action = null)
 {
     MessageKey = messageKey;
     Reason     = reason;
     Action     = action;
 }