vb.net 的 MaskedTextBox 中的属性相当于 vb6 的 Masked Edit 控件中的 Cliptext 属性
我发现这个属性很有用,但在 vb.net 中找不到它的直接替代品。有吗?谢谢
I find this property useful but cannot find a direct replacement for it in vb.net. Is there one? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在从
Text
属性获取文本之前调用maskedTextBox1.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals
即可。Just call
maskedTextBox1.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals
before you get the text from theText
property.