Reputation: 3259
I'm using Xceed Extended Toolkit Masked TextBox in WPF 4.5 with C#.
I have a simple MaskedTextBox:
<xctk:MaskedTextBox Text="{Binding CNPJ}" Mask="00.000.000/0000-00"/>
The problem is, when application is running the dots in the mask are replaced by commas:
How can I make the Mask use dots instead of commas?
Upvotes: 1
Views: 1571