ID の下にパスワード ラベルとテキスト フィールドを作成したいのですが、GriBagLayout は初めてです。
あなたが私を助けてくれることを願っています。
これが私のコードです:
class LoginPanel extends JPanel {//login components
private JButton exitbtn = new JButton("Exit");
private JLabel idLabel = new JLabel("Staff ID : ");
private JTextField idJtf = new JTextField(10);
private JLabel pwLabel = new JLabel("Password : ");
private JPasswordField pwJtf = new JPasswordField(10);
LoginPanel() {
setOpaque(false);
setLayout(new GridBagLayout());
setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
//add(new JLabel("Staff ID: ")); add(new JTextField(10));
//add(new JLabel("Password: ")); add(new JPasswordField(10));
add(idLabel);
add(idJtf);
add(pwLabel);
add(pwJtf);
//add(exitbtn);
}
}