WinForms:NumericUpDown (.NET CF 3.5) 和实数
NumericUpDown 似乎只处理整数。我如何修改它(?),以便我可以使用双精度作为值和增量?
NumericUpDown seems to be only dealing with integers. How can I modify it (?), so I can use doubles as Value and Increment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我只使用一个文本框,然后覆盖 OnKeyPress 事件。这段代码过去对我有用,但只适用于写 1234.56 的组,而不是 1234,56。
I just use a textbox, then override the OnKeyPress event. This code has worked for me in the past, but is only good for groups that write 1234.56, not 1234,56.
NumericUpDown 适用于小数类型,但仅在紧凑框架上为整数。这是 CF 类的限制。
但是,有一个 CodeProject UserControl它提供了 CF 的实现。
NumericUpDown works with decimal types, but is integer only on the compact framework. This is a limitation of the class on CF.
There is, however, a CodeProject UserControl that provides an implementation for CF.
有一个名为 DecimalPlaces 的属性。
将其设置为大于 0 的值,这样您就可以使用小数
There is a property called DecimalPlaces.
Set it to something grater than 0 and it will allow you to work with decimals
我的代码只是这里的一个块代码(使用 Compact Framework 进行测试);
顺便说一句,我讨厌紧凑框架。因为实在是太有限了!但我必须:(
My code is just one block code here it is (tested with Compact Framework);
by the way, I hate Compact Framework. Because it is too Limited! But I have to :(