如何将 textbox.text 转换为 int 或使用什么来仅用于 int 输入?
如何将 TextBox 转换为 int 或者 WPF 中是否有一个框仅支持数字?
How do I convert a TextBox to int or is there a box inside WPF that supports only numbers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要将字符串转换为 int,您可以使用
Parse
:或者您可以使用 NumericUpDown< /a> 控制。
To convert string to int you can use,
Parse
:Or you could use NumericUpDown control.
如果您只需要数字输入,那么使用 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...