本文介绍了输入面板用于文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好。
如何为TextBox设置输入掩码?
或者我可以使用掩码输入一些其他控件吗?
解决方案
TextBox没有支持掩码属性(除非你想将
想象为PasswordChar属性作为掩码)。有一个名为MaskedEditBox的控件
,但它通常被认为是一个弱的
控件。你对什么类型的输入掩码感兴趣(也许
我们可以设计一些代码来实现它)?
Rick - MVP
Hello.
How can I set input mask for TextBox?
Or can I use for mask input some other control?
解决方案
The TextBox doesn''t support a mask property (except, if you want to
think of the PasswordChar property as a "mask"). There is a control
named MaskedEditBox, but it is generally considered to be a "weak"
control to use. What type of input mask are you interested in (perhaps
we can devise some code to implement it)?
Rick - MVP
这篇关于输入面板用于文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!