通过 PropertyGrid 将特殊字符添加到 String 属性

发布于 2024-10-04 06:38:31 字数 233 浏览 4 评论 0原文

我正在 PropertyGrid 中显示类的属性。该类有一个属性 RegEx,毫不奇怪,它是一个字符串形式的正则表达式。

但是,我无法在 PropertyGrid 中输入类似 [0-9]{6} 的内容。属性网格中的字段似乎只接受字母、数字和基本标点符号。

如何让属性接受 $、{、}、#、@ 等字符。 ..等..等?

I'm displaying the properties of a class in a PropertyGrid. The class has a property RegEx, which not surprisingly is a regular expression as a string.

However, I am not able to type something like [0-9]{6} into the PropertyGrid. The field in the property grid only seems to accept letters, numbers, and basic punctuation.

How can get the property to accept characters like $, {, }, #, @ . ..etc..etc?

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

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

发布评论

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

评论(1

旧街凉风 2024-10-11 06:38:31

也许你可以使用字符串。
喜欢

Regex regex = new Regex("w+$");

May be you can use string.
like

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