java怎么在边框中加单选按钮?

 我来答
reekr
2012-12-03
知道答主
回答量:22
采纳率:0%
帮助的人:10.1万
展开全部
import java.awt.EventQueue;

import javax.swing.ButtonGroup;
import javax.swing.JFrame;
import javax.swing.JRadioButton;

public class Test {

private JFrame frame;

/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Test window = new Test();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}

/**
* Create the application.
*/
public Test() {
initialize();
}

/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);

//****************************
//创建radioBtn
JRadioButton rdbtnNewRadioButton = new JRadioButton("aaa");
JRadioButton rdbtnNewRadioButton_1 = new JRadioButton("bbbb");
//设置btn位置
rdbtnNewRadioButton.setBounds(6, 126, 141, 23);
rdbtnNewRadioButton_1.setBounds(123, 126, 141, 23);
frame.getContentPane().add(rdbtnNewRadioButton);
frame.getContentPane().add(rdbtnNewRadioButton_1);
//分组radioBtn
ButtonGroup bg=new ButtonGroup();
bg.add(rdbtnNewRadioButton_1);
bg.add(rdbtnNewRadioButton);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友4b68195
2012-12-03 · TA获得超过1520个赞
知道大有可为答主
回答量:1773
采纳率:100%
帮助的人:1725万
展开全部
JButton b=new JButton("botton");
JPanel jpb=new JPanel();
jpb.setLayout(new GridLayout(3,3));
jpb.add(new JLabel(""));
jpb.add(new JLabel(""));
jpb.add(new JLabel(""));
jpb.add(new JLabel(""));
jpb.add( b);
jpb.add(new JLabel(""));
jpb.add(new JLabel(""));
jpb.add(new JLabel(""));
jpb.add(new JLabel(""));
jpb.setBorder(new LineBorder(Color.red,2));
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友12ee0fd
2012-12-03 · TA获得超过4.7万个赞
知道大有可为答主
回答量:1.1万
采纳率:66%
帮助的人:1966万
展开全部
Border不是容器,不能添加
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式