no he encontrado una manera fácil de hacerlo. Encontré un código alrededor de las trampas para volver a recurrir a través de todos los controles en el formulario y determinar si alguno de ellos tiene errores de validación. Terminé convirtiéndolo en un método de extensión:
// Validate all dependency objects in a window
internal static IList<ValidationError> GetErrors(this DependencyObject node)
{
// Check if dependency object was passed
if (node != null)
{
// Check if dependency object is valid.
// NOTE: Validation.GetHasError works for controls that have validation rules attached
bool isValid = !Validation.GetHasError(node);
if (!isValid)
{
// If the dependency object is invalid, and it can receive the focus,
// set the focus
if (node is IInputElement) Keyboard.Focus((IInputElement)node);
return Validation.GetErrors(node);
}
}
// If this dependency object is valid, check all child dependency objects
foreach (object subnode in LogicalTreeHelper.GetChildren(node))
{
if (subnode is DependencyObject)
{
// If a child dependency object is invalid, return false immediately,
// otherwise keep checking
var errors = GetErrors((DependencyObject)subnode);
if (errors.Count > 0) return errors;
}
}
// All dependency objects are valid
return new ValidationError[0];
}
Entonces, cuando el usuario hace clic en el botón Guardar en un formulario, hago esto:
var errors = this.GetErrors();
if (errors.Count > 0)
{
MessageBox.Show(errors[0].ErrorContent.ToString());
return;
}
Es mucho más trabajo de lo que debería ser , pero usar el método de extensión lo simplifica un poco.
Esta es una buena solución. Gracias. – Jirapong