I am using WPF/MVVM. I am binding a textbox.Text to a nullable double in view model. UpdateSourceTrigger = PropertyChanged and not Lostfocus. Hence the double property will be updated when each digit is entered using Double.Parse(textbox.Text) inside the converter I am using. I am using PropertyChanged and converter here since I need to do some other validation checks.
My issue is I need to enter "1.69". When I enter "1", it is added as "1" to the property. Next I enter ".", but it is not added as "1." since double.parse saves the number as "1"
So I can't add decimal numbers. Please help. Thanks in advance.