0
我怎樣才能讓我的JRadioButton
啓用/禁用JFrame
一個JComboBox
?如何使JRadioButtons更改屬性(JFrame)?
我怎樣才能讓我的JRadioButton
啓用/禁用JFrame
一個JComboBox
?如何使JRadioButtons更改屬性(JFrame)?
if(radioButton.isSelected())
{
combo.setEnabled(true);
}
else
{
combo.setEnabled(false);
}
編輯:將這個代碼在一個JRadioButton事件處理
之間的連接另外'combo.setEnabled(radioButton.isSelected())' 。 – trashgod
不知道如果我理解正確的是在一個JRadioButton和JComboBox – mKorbel