Reputation: 3542
After dragging and dropping button group in Netbeans 7.2, how to add radio button in that button group?
Upvotes: 13
Views: 47092
Reputation: 1565
Upvotes: 0
Reputation: 4304
Upvotes: 6
Reputation: 291
In Netbeans 8.0.1, I use:
ButtonGroup bG = new ButtonGroup();
bG.add(btn_1);
bG.add(btn_2);
bG.add(btn_3);
bG.add(btn_4);
....
Upvotes: 2
Reputation: 31
Click on the Button Group and then click anywhere in the design form. Select all the buttons you want to group by pressing CTRL and the button. Right click on one of the buttons and select properties. In the ButtonGroup of the Properties, click on the down arrow. Your selection of button groups should appear. Left click on the one you want.
Upvotes: 3
Reputation: 5474
There's a Button Group
field in the radio button's property. Set this value for each of the radio button that you want to add in the group to the button group's name.
Upvotes: 25