我是 Java Swing 的新手,但我遇到了问题。
我必须创建一个登录窗口,从类似这样的图像中获取灵感(就像这样,scilicet 窗口必须显示 2 个文本字段,用户在其中插入其用户名和密码以及执行登录操作的按钮):
好的,我认为这很简单,我已经实现了以下类:
package com.techub.crystalice.gui.login;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import org.jdesktop.application.SingleFrameApplication;
import com.techub.crystalice.gui.Constants;
import com.techub.crystalice.gui.GUI;
public class LoginFrame extends SingleFrameApplication {
@Override
protected void startup() {
// TODO Auto-generated method stub
System.out.println("DENTRO: LoginFrame() ---> startup()");
this.getMainFrame().setTitle("MyApp Login");
//this.getMainFrame().setSize(600, 350); // Setta le dimensioni del JFrame che rappresenta la finestra principale
this.getMainFrame().pack();
Container mainContainer = this.getMainFrame().getContentPane(); // Recupera l'oggetto Container del JFrame
// Imposta un layput manager di tipo GridLayout per il contenitore principale: 3 righe ed una singola colonna:
mainContainer.setLayout(new GridLayout(3,1));
// Contenitore rappresentato da 6 righe a singola colonna contenente i campi testuali e di input del login:
JPanel body = new JPanel();
body.setLayout(new GridLayout(5, 1));
JPanel usernNameLabelPabel = new JPanel();
usernNameLabelPabel.add(new JLabel("Username"));
body.add(usernNameLabelPabel);
JPanel userNameTextPanel = new JPanel();
JTextField userName = new JTextField();
userNameTextPanel.add(userName);
body.add(userNameTextPanel);
JPanel passwordLabelPanel = new JPanel();
passwordLabelPanel.add(new JLabel("Password"));
body.add(passwordLabelPanel);
JPanel passwordTextPanel = new JPanel();
JTextField password = new JTextField();
passwordTextPanel.add(password);
body.add(passwordTextPanel);
this.getMainFrame().add(body); // Aggiunge al JFrame principale il JPanel contenente il form di login
show(this.getMainFrame());
JPanel footer = new JPanel();
footer.setLayout(new FlowLayout(FlowLayout.CENTER));
JButton loginButton = new JButton("Login");
footer.add(loginButton);
this.getMainFrame().add(footer); // Aggiunge al JFrame principale il JPanel contenente il bottone di login
}
public static void main(String[] args) {
System.out.println("DENTRO: LoginFrame() ---> main()");
launch(LoginFrame.class, args);
}
}
这个类使用一个名为 JDesktop 的小框架,它涉及到 startup() 方法的定义,但这是纯 Swing 代码。唯一要说的是,我通过这段代码行获得了主 *JFrame *:
this.getMainFrame()
这个例子似乎效果不好,事实上我在登录表单可视化中存在一些美学问题,因为我得到了以下结果:
如您所见,它存在许多错误:
- JLabel 和 JTextField 相互垂直压缩
- 在上一个示例中,元素居中且未与左侧对齐
- JTextField 很短
我可以尝试什么来解决这些问题?