将JRadioButton添加到RadioButton组

Ari*_*ule 13 java swing jradiobutton buttongroup netbeans-7

美好的一天

想知道如何通过将组件拖放到框架上来将单选按钮添加到ButtonGroup.

JRadioButton male = new JRadioButton("Male");
JRadioButton female = new JRadioButton("Female");
ButtonGroup bg = new ButtonGroup();
bg.add(male);
bg.add(female);
pane.add(male);
pane.add(female);
Run Code Online (Sandbox Code Playgroud)

我怎么能通过简单的拖放来做到这一点.如果我将ButtonGroup放到框架上,它会在"其他组件"下分组,从那里我不确定如何向按钮组添加单选按钮.

谢谢阿里安

mKo*_*bel 4

您查看了HierarchyListener,一旦hierarchyChanged您添加了一个新JRadioButtonButtonGroup,请仔细了解最后知道的 isSelected 的具体情况JRadioButton