请问盒式布局中
怎么添加 单选按钮
比如 我要在一个盒式布局中添加一个
学历的标签 下面是几个 按钮
boxV4=Box.createHorizontalBox();
ButtonGroup cg=new ButtonGroup();
JRadioButton b1=new JRadioButton("小学");
JRadioButton b2=new JRadioButton("中学");
JRadioButton b3=new JRadioButton("大学");
JLabel lb1=new JLabel("学历:");
boxV4.add(lb1);cg.add(b1);cg.add(b2);cg.add(b3);
我这样设置了以后 没有显示按钮
|
|