We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I've been trying to create Mask for MaskedTextBox and faced a problem with optional characters.
The control seems to treat optional digits as mandatory.
Specifically:
Mask="N #90°" - where the 2 digits before the degree symbol are optional
However, values such as N 8° or N 12° are not valid
To make it valid, I need to input values with additional spaces like 'N 3°'
Hot to allow users to input values of different lengths without requiring additional spaces?
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Hi,
How about using a prompt char of Empty: <xctk:MaskedTextBox Mask="N #90°" PromptChar="" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<xctk:MaskedTextBox Mask="N #90°" PromptChar="" HorizontalAlignment="Center" VerticalAlignment="Center"/>
No branches or pull requests
Hi,
I've been trying to create Mask for MaskedTextBox and faced a problem with optional characters.
The control seems to treat optional digits as mandatory.
Specifically:
Mask="N #90°" - where the 2 digits before the degree symbol are optional
However, values such as N 8° or N 12° are not valid
To make it valid, I need to input values with additional spaces like 'N 3°'
Hot to allow users to input values of different lengths without requiring additional spaces?
The text was updated successfully, but these errors were encountered: