0

ラベルと 2 つのラジオボタンを持つ jframe があります。

私は春のレイアウトを使用しますが、ページの左上に表示される2番目のradioButton!

public class tester extends JFrame {

public tester() {
    add(create());
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setSize(400, 500);
    setVisible(true);
}

public JPanel create() {
    JPanel panel = new JPanel();
    ButtonGroup group = new ButtonGroup();
    JRadioButton r1 = new JRadioButton("Yes");
    JRadioButton r2 = new JRadioButton("No");
    group.add(r1);
    group.add(r2);
    JLabel lable = new JLabel("Today is sunday?");
    panel.add(lable);
//        panel.add(group);      // How add this?

    panel.add(r1);
    panel.add(r2);

    JButton savebt= new JButton("Save");
    JButton cancelbt=new JButton("Cancell");
    panel.add(savebt);
    panel.add(cancelbt);

    panel.setLayout(new SpringLayout());
    SpringUtilities.makeCompactGrid(panel, 1, 3, 50, 100, 25, 50);
    return panel;
}

public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        @Override
        public void run() {
            new tester();
        }
    });
}
}

今、この例外が発生します:

Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: No such child: 5

ラジオボタンの行の下に2つのボタンを表示したい!

4

1 に答える 1

3

パネルには 3 つの項目があるため、列の数は 3 にする必要があります。

SpringUtilities.makeCompactGrid(panel, 1, 3, 50, 100, 25, 50);

// panel.add(グループ); // これを追加する方法は?

これは必要ありません。ButtonGroup はパネルに追加されません。これらはボタン選択管理用であり、表示されません。

于 2013-03-27T21:28:26.533 に答える