延迟JCheckbox的状态改变
我想让 Swing JCheckBox 的行为如下:
- 当用户单击它时,一条消息将发送到服务器,其状态与复选框的当前选中状态相反 (
!checked
)。这种状态实际上并不会立即改变。 - 一段时间后,服务器会响应该复选框的新状态。
我认为这是一种非常常见的使用模式。这样做的正确方法是什么?
I'd like to make a Swing JCheckBox behave like this:
- When the user clicks it, a message is sent to the server, with the opposite of the checkbox' current checked state (
!checked
). That state doesn't actually change immediately. - Some time later, the server responds with the new state for the checkbox.
I presume this is a pretty common usage pattern. What is the correct way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看PropertyChangeSupport。 本文可能会给您一些关于如何实现您的功能的提示想。
take a look at PropertyChangeSupport. This article may give you some hints on how to implement what you want.