MultiBindingExpression.ValidationError Property

Definition

Gets the ValidationError object that caused this instance of MultiBindingExpression to be invalid.

public:
 virtual property System::Windows::Controls::ValidationError ^ ValidationError { System::Windows::Controls::ValidationError ^ get(); };
public override System.Windows.Controls.ValidationError ValidationError { get; }
member this.ValidationError : System.Windows.Controls.ValidationError
Public Overrides ReadOnly Property ValidationError As ValidationError

Property Value

The ValidationError object that caused this instance of MultiBindingExpression to be invalid.

Remarks

You can set validation rules on both the MultiBinding object and the individual Binding objects in the MultiBinding object. The binding engine evaluates the ValidationRules on the MultiBinding object when a value moves from the binding target property to the IMultiValueConverter object (multi-value converter). After that, when a value moves from the converter to the binding source property of an individual binding, the binding engine evaluates the ValidationRules on that Binding object.

Applies to