如何将 textbox.text 转换为 int 或使用什么来仅用于 int 输入?

发布于 2024-11-07 08:36:16 字数 47 浏览 0 评论 0原文

如何将 TextBox 转换为 int 或者 WPF 中是否有一个框仅支持数字?

How do I convert a TextBox to int or is there a box inside WPF that supports only numbers?

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

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

发布评论

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

评论(2

话少心凉 2024-11-14 08:36:16

要将字符串转换为 int,您可以使用 Parse

string text = "1234";
int value = int.Parse(text);

或者您可以使用 NumericUpDown< /a> 控制。

To convert string to int you can use, Parse:

string text = "1234";
int value = int.Parse(text);

Or you could use NumericUpDown control.

万劫不复 2024-11-14 08:36:16

如果您只需要数字输入,那么使用 numbericupdown 可能会更好。当然,您可以使用 tryparse 验证输入...

If you only want numeric input, you might be better off with numbericupdown. Of course, you could just validate the input using tryparse...

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