使用计时器增加 JTextField 中的值
如何制作一个计时器来增加 JFormattedTextField 中的时间?
How do I go about making a timer that will increment the time in a JFormattedTextField?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 http://download.oracle.com/javase /6/docs/api/javax/swing/Timer.html
这使您可以在 Swing 事件线程中以指定的延迟重复执行 ActionListener。
只需从文本字段获取和设置值。
编辑:不是 Runnable 而是 ActionListener
Look at http://download.oracle.com/javase/6/docs/api/javax/swing/Timer.html
This lets you execute an ActionListener repeatedly in the Swing event thread with a specified delay.
The just get and set the value from the textfield.
Edit: not a Runnable but an ActionListener