BindingGroup.NotifyOnValidationError Propriedade

Definição

Obtém ou define se o evento Error ocorre quando o estado de um ValidationRule é alterado.

public:
 property bool NotifyOnValidationError { bool get(); void set(bool value); };
public bool NotifyOnValidationError { get; set; }
member this.NotifyOnValidationError : bool with get, set
Public Property NotifyOnValidationError As Boolean

Valor da propriedade

true se o Error evento ocorrer quando o estado de um ValidationRule for alterado; caso contrário, false. O padrão é false.

Exemplos

O exemplo a seguir cria um BindingGroup e define NotifyOnValidationError como para true que o aplicativo possa manipular o Validation.Error evento quando um ValidationRule falha.

<StackPanel.BindingGroup>
  <BindingGroup NotifyOnValidationError="True">
    <BindingGroup.ValidationRules>
      <src:ValidateDateAndPrice ValidationStep="ConvertedProposedValue" />
    </BindingGroup.ValidationRules>
  </BindingGroup>
</StackPanel.BindingGroup>

O exemplo a seguir manipula o Validation.Error evento.

// This event occurs when a ValidationRule in the BindingGroup
// or in a Binding fails.
private void ItemError(object sender, ValidationErrorEventArgs e)
{
    if (e.Action == ValidationErrorEventAction.Added)
    {
        MessageBox.Show(e.Error.ErrorContent.ToString());
    }
}
' This event occurs when a ValidationRule in the BindingGroup
' or in a Binding fails.
Private Sub ItemError(ByVal sender As Object, ByVal e As ValidationErrorEventArgs)
    If e.Action = ValidationErrorEventAction.Added Then
        MessageBox.Show(e.Error.ErrorContent.ToString())

    End If
End Sub

Comentários

O Validation.Error evento anexado ocorre no elemento que tem o BindingGroup.

Aplica-se a