I implemented custom validation rules to use with textboxes in my WPF project. I have the following problem:
If, for example, I have a textbox for entering double values, after validation errors (e.g. for typing "30.0" I have to get a validation error when text is "30.") the validation / binding mechanism converts double representation of integer numbers ("30.0") to int representation ("30"). If I keep the validation rules but return always ValidationResult.ValidResult or remove the validation rules, the value does not change and remains "30.0".
How can I fix it / workaround it?