将 ButtonGroup 中的 JradioButton 设置为 setSelected
JradioButton that is in ButtonGroup to setSelected
我有两个 JRadioButton:SabiranjeradioButton
(我放在 ButtonGroup 中)和 Dijeljenjerdbtn
(我没有放在 ButtonGroup 中)。我想制作一个 重置按钮 所以当我点击按钮时程序应该像打开时一样。
问题是我尝试使用方法 .setSelected(false)
从 JRadioButtons 中删除 select 但它 对 [=] 不起作用 10=](我放在 ButtonGroup 中)。
谁能帮帮我?
ButtonGroup 不允许同时取消选中所有 RadioButton。您可以通过 ButtonGroup#clearSelection 方法手动清除选择。
Clears the selection such that none of the buttons in the ButtonGroup
are selected.
我有两个 JRadioButton:SabiranjeradioButton
(我放在 ButtonGroup 中)和 Dijeljenjerdbtn
(我没有放在 ButtonGroup 中)。我想制作一个 重置按钮 所以当我点击按钮时程序应该像打开时一样。
问题是我尝试使用方法 .setSelected(false)
从 JRadioButtons 中删除 select 但它 对 [=] 不起作用 10=](我放在 ButtonGroup 中)。
谁能帮帮我?
ButtonGroup 不允许同时取消选中所有 RadioButton。您可以通过 ButtonGroup#clearSelection 方法手动清除选择。
Clears the selection such that none of the buttons in the ButtonGroup are selected.