17
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

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
ntakouris
  • 898
  • 1
  • 9
  • 22

2 Answers2

39

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

Manas Mukherjee
  • 5,270
  • 3
  • 18
  • 30
1

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).

FGA
  • 11
  • 2
  • 2
    Welcome to Stack Overflow. Please write your answer in English, as Stack Overflow is an [English only site](https://meta.stackoverflow.com/a/297680). – STA Mar 12 '21 at 15:46