1

Javaで作成された2つのラジオボタンがあります。問題は、それらがリンクされていないことです。つまり、両方を同時に選択できます。それらの間のリンクを達成するにはどうすればよいですか?

4

2 に答える 2

3

これが必要だと思います。

        //Create three radio buttons   
        JRadioButton aButton = new JRadioButton("A",true);
        JRadioButton bButton = new JRadioButton("B");
        JRadioButton cButton = new JRadioButton("C");

        //Create a ButtonGroup object, add buttons to the group
        ButtonGroup myButtonGroup = new ButtonGroup();
        myButtonGroup.add(aButton);
        myButtonGroup.add(bButton);
        myButtonGroup.add(cButton);

        //Display radio buttons
        getContentPane().setLayout(new FlowLayout());
        getContentPane().add(aButton);
        getContentPane().add(bButton);
        getContentPane().add(cButton);
        setSize(250,100);
        setTitle("Swing Radio Buttons");
        setVisible(true);

助けがあれば教えてください。

于 2013-07-27T18:00:59.077 に答える