开发者

How to make JRadioButtons change properties (JFrame)?

开发者 https://www.devze.com 2023-03-26 20:34 出处:网络
How can I make my JRadioButton enable/di开发者_开发知识库sable a JComboBox in JFrame?if(radioButton.isSelected())

How can I make my JRadioButton enable/di开发者_开发知识库sable a JComboBox in JFrame?


if(radioButton.isSelected())
{
   combo.setEnabled(true);
}
else
{
   combo.setEnabled(false);
}

EDIT: Put this code in your event handler of JRadioButton

0

精彩评论

暂无评论...
验证码 换一张
取 消