本文整理匯總了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;
}