Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

.net - How to make the MaskedTextBox only accept HEX value?

I need a control that only accept HEX value in the following format:

xxxx-xxxx and x is in 0-9, a-f, A-F

So I add a MaskedTextBox and try to edit its Mask property, but did not succeed.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can't do this out of the box with a MaskedTextBox. If you take a look at the allowed masking elements detailed at the documentation for the Mask property, you'll see that there is no way that you can enforce only hexadecimal input.

You can use a NumericUpDown and set its Hexadecimal property to true, though.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...