如何让蒙版文本框只接受数字和逗号?

发布于 2024-11-28 14:23:11 字数 80 浏览 0 评论 0 原文

尝试自己寻找答案,但找不到很好的例子。

所以我想要一个 wpf 中的屏蔽文本框,只接受数字和逗号。

例如:35,5

Tried finding the answer myself but couldn't find a good example.

So I want a masked textbox in wpf that only accepts numbers and a comma.

For example: 35,5

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

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

发布评论

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

评论(1

久伴你 2024-12-05 14:23:11

我将创建一个继承自标准文本框控件的自定义控件。然后,我将一个事件处理程序添加到 TextChanged 事件并检查键入的字符,如果它是无效字符(或类似的内容),则恢复更改,

这里有很多有用的控件,可以帮助您节省工作:

I would create a custom control that inherits from the standard text box control. Then I'd add an event handler to the TextChanged event and check the character typed, and revert the change if it's an invalid character (or something along those lines)

There's quite a few useful controls here that will save you the job:

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