public PropertyValidatingEventArgs(CustomProperty customProperty, object value)
     : base(customProperty, value)
 {
 }
 public PropertyEventArgs(CustomProperty customProperty, object value)
 {
     CustomProperty = customProperty;
     Value          = value;
 }