我有一组JRadioButton
s 放在 aJPanel
中。另外我有一个“删除”按钮,这样如果JRadioButton
选择 a 然后按下这个“删除”按钮,JRadioButton
应该从JPanel
.
我尝试了以下操作(删除按钮的操作侦听器),但没有成功。
// bg: buttonGroup
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
int count = -1;
for (Enumeration e=bg.getElements(); e.hasMoreElements(); ) {
JRadioButton b = (JRadioButton)e.nextElement();count++;
if (b.getModel() == bg.getSelection()) {
bg.remove(b);
jPanel1.remove(jPanel1.getComponent(count));
}
}
}