See the following code
<igEditors:XamMaskedEditor Grid.Column="0" Grid.Row="1" Value="{Binding TaxInfoID}" Mask="nnn-nn-nnnn"/>
I want to enter the taxid in this format from right to left. But i can't enter more than 4 digits.
Hello,
Actually, you can escape the negative sign in the mask like this:
Mask="nnn\-nn\-nnnn"
This is a reserved character for negative values in the mask so I think you cannot use that. If you change that to something else that is not reserved, you will be able to use this mask correctly.