イベントを発生させたバインディングを取得することは可能Validation.Error
ですか?
例: テキスト ボックスでこのイベントにサインアップしました。
<TextBox Validation.Error="My_Error" Text="{Binding MyProp,UpdateSourceTrigger=PropertyChanged,NotifyOnValidationError=True}" />
このイベントは、検証エラーが発生したときに実行され、次の関数に到達します。
private void My_Error(object sender, ValidationErrorEventArgs e)
{
//Here I want to get the property for which fired the event (MyProp). Is it possible?
}