按请求绘制,而不是使用指定的 fps 绘制
如何通过我自己的(当模型更改时)或系统(当其他窗口损坏图像时)重绘请求更新图像而不使用 FPSAnimator?
how can I update image by my own (when model changes) or system (when other window corrupted image) repaint request and not to use FPSAnimator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是使用 Model-View-Controller 模式,控制器具有仅在需要时通知视图的计时器。我通常更喜欢 javax.swing.Timer,因为操作事件处理程序在事件分派线程上执行。
One approach is to use the Model-View-Controller pattern, with the controller having a timer that notifies the view(s) only when required. I generally prefer
javax.swing.Timer
, as the action event handler executes on the event-dispatching thread.