I have a problem. I need to have double formatted values in all TextBoxes.
When you type something into this, after lost focus it will be formatted.
<TextBox Text="{Binding ABC, StringFormat='{}{0:N}'}" />
Problem arises when you add this UpdateSourceTrigger with propertychanged. Then it will never be formatted.
<TextBox Text="{Binding ABC, UpdateSourceTrigger=PropertyChanged, StringFormat='{}{0:N}'}" />
Why is that? Is there any way how to solve that? (in XAML preferably)