gpt4 book ai didi

java - 使用 GridBagLayout 需要帮助

转载 作者:行者123 更新时间:2023-12-01 08:11:16 25 4
gpt4 key购买 nike

我想在 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);
}
}

最佳答案

就像阅读 this tutorial: GridBagLayout 一样简单

关于java - 使用 GridBagLayout 需要帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17130850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com