从另一个按钮更改切换按钮的状态
我正在使用 Swing 与 Eclipse 和 Window Builder Pro 创建 Java GUI。我正在使用 JButtons
和 JToggleButtons
。我想从另一个按钮更改切换按钮的状态。
例如,当我单击清除网格时,所有切换按钮都将“未选中”。
我该怎么做?我必须使用哪些方法来切换按钮和按钮?
I'm creating a Java GUI using Swing with Eclipse and Window Builder Pro. I'm using JButtons
and JToggleButtons
. I want to change toggle button's state from another button.
For example, when I click the clear grid, all the toggle buttons will be 'not selected'.
How can I do this? What are the methods that I have to use for toggle buttons and buttons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
toggleButton.setSelected(布尔值b)
toggleButton.setSelected(boolean b)
将actionListener 添加到您的JButton 中,并在actionPerformed(ActionEvent) 方法中更改所有JToggleButton 的状态。确保所有 JToggleButton 都可以在此方法中访问。一个简单的例子是..
Add actionListener to your JButton and in actionPerformed(ActionEvent) method change the state of all JToggleButtons. Make sure all your JToggleButton is accessible in this method. A simple example will be..
将
ActionListener
注册到JButton
实例,并确保您可以访问其中的切换按钮来操纵其状态。Register an
ActionListener
to theJButton
instance and make sure you can access the toggle buttons therein to manipulate their state.我正在寻找这个,这可能会帮助某人
我做了一个方法,使我的所有按钮都为假(当我想要它时取消选择切换)
i was looking for this, this might help somebody out
i made a method that make all my button false (unselect the toggles when i wanted it)