本文整理汇总了Java中javax.swing.JRadioButton.setBounds方法的典型用法代码示例。如果您正苦于以下问题:Java JRadioButton.setBounds方法的具体用法?Java JRadioButton.setBounds怎么用?Java JRadioButton.setBounds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.JRadioButton
的用法示例。
在下文中一共展示了JRadioButton.setBounds方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import javax.swing.JRadioButton; //导入方法依赖的package包/类
private void init() {
getContentPane().setLayout(null);
JPanel panel = new JPanel();
panel.setBorder(new TitledBorder(null, "游戏模式", TitledBorder.LEADING, TitledBorder.TOP,
null, null));
panel.setBounds(23, 25, 383, 59);
getContentPane().add(panel);
panel.setLayout(null);
single = new JRadioButton("单机");
single.setBounds(40, 18, 68, 23);
panel.add(single);
/*fight = new JRadioButton("对战");
fight.setBounds(149, 18, 78, 23);
panel.add(fight);
together = new JRadioButton("合作");
together.setBounds(243, 18, 78, 23);
panel.add(together);*/
ButtonGroup group = new ButtonGroup();
group.add(single);
group.add(fight);
group.add(together);
switch (SharedVar.game_mode) {
case Constants.MODE_SINGLE:
single.setSelected(true);
break;
case Constants.MODE_FIGHT:
fight.setSelected(true);
break;
case Constants.MODE_TOGETHER:
together.setSelected(true);
break;
default:
break;
}
confirm = new JButton("确定");
confirm.setBounds(157, 104, 93, 23);
confirm.addActionListener(this);
getContentPane().add(confirm);
cancel = new JButton("取消");
cancel.setBounds(295, 104, 93, 23);
cancel.addActionListener(this);
getContentPane().add(cancel);
}
示例2: createButtons
import javax.swing.JRadioButton; //导入方法依赖的package包/类
@Override
protected List<JRadioButton> createButtons() {
List<JRadioButton> buttons = new ArrayList<JRadioButton>();
optYes = new JRadioButton("Yes");
optYes.setBounds(0, 0, 60, 20);
buttons.add(optYes);
optNo = new JRadioButton("No");
optNo.setBounds(55, 0, 60, 20);
buttons.add(optNo);
return buttons;
}