是否可以禁用单选按钮?用户选择其中一个单选按钮后,我不希望他们更改答案,所以我想禁用单选按钮,我用过
radioButton.setEnable(false)
但仍然可以选择其他单选按钮。
选择单选按钮后禁用单选按钮的正确语法是什么?
答案 0 :(得分:1)
JRadioButton b1 = new JRadioButton("");
b1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
if ("disable".equals(e.getActionCommand())) {
b1.setEnabled(true);
} else {
b1.setEnabled(false);
}
}
});