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