标签: java swing jframe jcombobox jradiobutton
如何在JRadioButton中JComboBox启用/禁用JFrame?
JRadioButton
JComboBox
JFrame
答案 0 :(得分:2)
if(radioButton.isSelected()) { combo.setEnabled(true); } else { combo.setEnabled(false); }
编辑:将此代码放在JRadioButton的事件处理程序中