Hi,
In WPF, I would like to be able to template how my bindings are applied by default.
For instance, I want to write :
Text="{Binding Path=PedigreeName}"
But it would be as if I had typed :
Text="{Binding Path=PedigreeName, Mode=TwoWay, UpdateSourceTrigger=LostFocus, NotifyOnValidationError=True, ValidatesOnDataErrors=True, ValidatesOnExceptions=True}"
Any idea ?
Thanks,
- Patrick