Add ButtonGroup to JPanel

36,613

Solution 1

As ButtonGroup is not a component, you cannot add your ButtonGroup to a JPanel. Instead add your buttons to your JPanel, e.g:

JPanel jPanel = new JPanel();
ButtonGroup group = new ButtonGroup();
btn1 = new JRadioButton("btn1 ");btn1.setSelected(true);
btn2 = new JRadioButton("btn2 ");
group.add(btn1 );
group.add(btn2 );

jPanel.add(btn1);
jPanel.add(btn2).

Hope it will be useful.

Thanks

Solution 2

The ButtonGroup class creates only a logical radio button selection group, not a physical one, and is responsible for ensuring that only one button is selected (by deselecting others in the group).

Share:
36,613
ntakouris
Author by

ntakouris

drones and neural networks

Updated on November 01, 2022

Comments

  • ntakouris
    ntakouris over 1 year
    JPanel.add(ButtonGroup);
    

    Is not working. I MUST add it to a JPanel because I am using tabs. This is getting really frustrating.I hace not found a way yet

  • sta
    sta about 3 years
    Welcome to Stack Overflow. Please write your answer in English, as Stack Overflow is an English only site.