RHaguiuda
RHaguiuda

Reputation: 3259

XCeed Extended Toolkit MaskedTextBox Format behavior

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:

enter image description here

How can I make the Mask use dots instead of commas?

Upvotes: 1

Views: 1571

Answers (1)

Erli
Erli

Reputation: 518

input \ before ".", example: Mask="00\.000\.000/0000-00"

Upvotes: 4

Related Questions