0

When I use such Xaml:

<TextBox ..... InputScope="Digits" />

I can see "dot" on bottom of numerical keyboard. But sometimes, I can see "comma" instead of "dot".

When I see "comma" I have to hold on button to choose "dot". How can I configure TextBox to have "dot" by default all the time?

vladozavr
  • 1
  • 2

1 Answers1

0

As far as I know it depends on the current CultureInfo.CurrentCulture.NumberFormat.CurrencyDecimalSeparator value only, thus in different regions its different one.

Thus I would suggest looking for a workarounds like one suggested in earlier question on the topic, or use custom input boxes, like I did for Lat/lon values

Community
  • 1
  • 1
Dr.Jukka
  • 2,346
  • 2
  • 15
  • 20