1

私はJAVAをまったく初めて使用します..生徒用と教師用の2つのラジオボタンを備えたフォームを作成したいと考えています。ユーザーが学生をクリックすると、学生に関連する別のフォームが開き、ユーザーが教師をクリックすると、教師フォームが開き、ユーザーに関連データを入力するように求められます....最初の私のコードは次のとおりです....

import java.awt.*;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.border.EmptyBorder;

public class Frm1 extends JFrame {

    private JPanel contentPane;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    Frm1 frame = new Frm1();
                    frame.setVisible(true);

                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the frame.
     */
    public Frm1() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(100, 100, 450, 300);
        contentPane = new JPanel();
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        contentPane.setLayout(new BorderLayout(0, 0));
        setContentPane(contentPane);
        JRadioButton rb1=new JRadioButton("STUDENT");
        add(rb1);
        JRadioButton rb2=new JRadioButton("TEACHER"); 
        add(rb2);



    }

}

生徒ではなく教師のラジオボタンのみをフォームに追加します。また、それぞれのラジオボタンが選択されたときに教師または生徒のフォームに移動するようにプログラムを作成する方法を教えてください。

前もって感謝します

4

4 に答える 4

2

これは、BorderLayoutを使用していて、ボタンを配置する場所を指定していないためです。テストするには、contentPane.setLayout(new BorderLayout(0、0));にコメントを付けます。両方が並んで表示されていることがわかります。

レイアウトの詳細については、このリンク「レイアウトマネージャーのビジュアルガイド」から学習してみてください。

于 2012-06-29T05:02:09.763 に答える
2

ボタングループを使用...

ButtonGroup group = new ButtonGroup();
JRadioButton mbutt1 = new JRadioButton("Yes");
JRadioButton mbutt2 = new JRadioButton("No");
group.add(mbutt1);
group.add(mbutt2);
于 2012-06-29T05:25:50.757 に答える
2

レイアウトの詳細レイアウト マネージャーのビジュアル ガイド
次のコードを参照してください。

 /**
 * Create the frame.
 */
public Frm1() {
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setBounds(100, 100, 450, 300);
    contentPane = new JPanel();
    contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    //contentPane.setLayout(new BorderLayout(0, 0));   //this is your problem 
    setContentPane(contentPane);

    JRadioButton rb1=new JRadioButton("STUDENT");
    contentPane.add(rb1);
    JRadioButton rb2=new JRadioButton("TEACHER"); 
    contentPane.add(rb2);
    //Group the radio buttons.
    ButtonGroup group = new ButtonGroup();
    group.add(rb1);
    group.add(rb2);
}
于 2012-06-29T05:17:05.513 に答える
2

あなたには明らかに多くの研究と学習が待っています。この問題に取り組む (多くの) 方法の 1 つを次に示します。

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ButtonGroup;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.border.EmptyBorder;

public class Test extends JFrame {

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    new Test().setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    private JPanel cards;
    private CardLayout cardLayout;
    private static final String studentTag = "student";
    private static final String teacherTag = "teacher";

    public Test() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(100, 100, 450, 300);
        JPanel contentPane = new JPanel(new GridLayout(2,1));
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        add(contentPane);

        JPanel radioPanel = new JPanel(new GridLayout(0,1));
        JRadioButton studentButton = new JRadioButton("Student");
        studentButton.setActionCommand(studentTag);
        studentButton.setSelected(true);
        JRadioButton teacherButton = new JRadioButton("Teacher");
        teacherButton.setActionCommand(teacherTag);
        ButtonGroup group = new ButtonGroup();
        group.add(studentButton);
        group.add(teacherButton);
        radioPanel.add(studentButton);
        radioPanel.add(teacherButton);
        contentPane.add(radioPanel);

        cardLayout = new CardLayout();
        cards = new JPanel(cardLayout);
        JPanel studentCard = new JPanel(new BorderLayout());
        studentCard.add(new Label("Student card"), BorderLayout.CENTER);
        JPanel teacherCard = new JPanel(new BorderLayout());
        teacherCard.add(new Label("Teacher card"), BorderLayout.CENTER);
        cards.add(studentCard, studentTag);
        cards.add(teacherCard, teacherTag);
        contentPane.add(cards);
        ActionListener listener = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                cardLayout.show(cards, e.getActionCommand());
            }
        };
        studentButton.addActionListener(listener);
        teacherButton.addActionListener(listener);
        pack();
    }
}
于 2012-06-29T06:03:04.870 に答える