WinForms MaskedTextBox 接受某些字符

发布于 2024-11-30 23:31:41 字数 61 浏览 3 评论 0原文

我有一个接受字母数字字符的 MaskedTextBox,但我也想接受括号“()”。如何更改掩码以也接受括号?

I have a MaskedTextBox that accepts alpha numeric chars but I also want to accept brackets "()". How can I change the mask to accepts brackets also?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流年里的时光 2024-12-07 23:31:41

请参阅类似问题的答案:

如何在 C# 中将正则表达式设置为 MaskedTextBox 的掩码?

您可能应该只使用正则验证,而不是使用掩码,然后就可以直接使用正则表达式。确保(常规,未屏蔽)文本框的 CausesValidation 属性为 true,然后拦截 Validating 事件,如果正则表达式不匹配,则将 CancelEventArgs.Cancel 设置为 true。

See this answer to a similar question:

How to set Regex Expression as the Mask for a MaskedTextBox in C#?

Instead of using a mask, you should probably just use regular validation, and then you can use the regular expressions directly. Make sure that the CausesValidation property of the (regular, not masked) textbox is true, then intercept the Validating event and if the regular expression doesn't match, set the CancelEventArgs.Cancel to true.

心奴独伤 2024-12-07 23:31:41

您可以简单地将这行代码放入表单构造函数中:

 maskedTextBox1.Mask = "(000)000.000";

You can simply put this line of code into form constructor:

 maskedTextBox1.Mask = "(000)000.000";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文