Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
Please post some code (binding, property, and validation). What happens when the textbox is empty? – Blam Dec 4 '12 at 15:35

1 Answer

up vote 1 down vote accepted

You can control when the binding fires. If it happens on each keystroke, then you'll have a problem with the invalid intermediate 30. case, as you describe.

You might like to look at adding UpdateSourceTrigger=LostFocus to your Binding.

There's some more information here: http://msdn.microsoft.com/en-us/library/ms754356.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.