I have a little problem formatting double values in my XAML code.
double price = 10300.455;
This number should be displayed as 10,300.45 on US systems and as 10.300,45 on german systems.
So far I managed to limit the numbers with the following
Binding="{Binding price, StringFormat=F2}"
But the result is 10300.45 and that is not what I had in mind. I could fix this easily using a converter but I don't want to do that if there is another way around. Just the right Formatter would be fine.