0

我正在尝试用java制作一个UI,如果这是一个简单的问题,我很抱歉。

public class viewDeneme extends JFrame {

private static final long serialVersionUID = -7284396337557548747L;
private JTextField nameTxt = new JTextField(10);
private JTextField passwordTxt = new JTextField(10);
private JButton loginBtn = new JButton("Giriş");
private JLabel nameLbl = new JLabel("Kullanıcı adi:");
private JLabel passwordLbl = new JLabel("Şifre:");

public viewDeneme(){
    JPanel loginPanel = new JPanel();
    this.setSize(600,200);
    this.setLocation(600, 300);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    nameLbl.setBounds(200, 200, 100, 50);

    loginPanel.add(nameTxt);
    loginPanel.add(passwordTxt);
    loginPanel.add(loginBtn);
    loginPanel.add(nameLbl);
    loginPanel.add(passwordLbl);

    this.setVisible(true);
    this.add(loginPanel);
}

public static void main(String[] args) {
    new viewDeneme();

}
}

这是我的代码。我正在尝试为标签和文本框设置边界,但它没有改变任何东西。没有任何错误,所以我必须遗漏一些东西,但我在网络上搜索时找不到它。谢谢你的帮助

4

1 回答 1

0

请参阅什么是 setBounds 以及如何使用它?

JPanel 布局必须为空才能使用绝对定位。JPanel 对象被初始化为使用 FlowLayout,除非您在创建 JPanel 时以不同方式指定。所以你必须写

loginPanel.setLayout(null);
于 2014-09-25T08:25:00.743 回答