當前位置: 首頁>>代碼示例>>Java>>正文


Java JRadioButton.setBounds方法代碼示例

本文整理匯總了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);
}
 
開發者ID:zhangjikai,項目名稱:LinkGame,代碼行數:51,代碼來源:ModeDialog.java

示例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;
}
 
開發者ID:adihubba,項目名稱:javafx-3d-surface-chart,代碼行數:15,代碼來源:YesNoRadioButtonHorPanel.java


注:本文中的javax.swing.JRadioButton.setBounds方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。