我正在尝试用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();
}
}
这是我的密码。我正在尝试为标签和文本框设置界限,但这并没有改变任何事情。并没有任何错误,所以我一定错过了什么,但我在网上搜索找不到它。感谢您的帮助
查看什么是setBounds以及如何使用它?
JPanel布局必须为null才能使用绝对定位。JPanel对象被初始化为使用FlowLayout,除非您在创建JPanel时指定了不同的内容。所以你必须写
loginPanel.setLayout(null);