如何让数字向上向下等待用户完成输入?
与 .NET --- 文本框控件 - 等待几乎相同的问题直到用户完成输入
,但它适用于numericUpDown 在 textChanged 事件上说:
(此活动支持.NET 框架基础设施并不是 旨在直接从您的 代码。)
。我希望用户能够键入一个数字,并且如果在一定时间间隔(例如 500 毫秒)后未按下另一个键,则会触发 valueChanged 事件(或进行自定义方法调用)。
我真的不想再使用带有 vscroll 栏的文本框,希望有一种方法或者...MSDN 警告对于这个用例来说不合理?
Almost the same question as .NET --- Textbox control - wait till user is done typing
but it is for a numericUpDown which says on the textChanged event:
(This event supports the .NET
Framework infrastructure and is not
intended to be used directly from your
code.)
. I want a user to be able to type a number and if another key is not pressed after an interval (500ms for example) the valueChanged event fires (or a custom method call is made).
I'd really rather not go back to using a textbox with a vscroll bar, hopefully there is a way or... the MSDN warning isn't justified for this use case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
Use ValueChanged.