我對JFrame相當陌生,我想知道爲什麼我的項目沒有顯示在窗口上。我知道我沒有ActionHandler,但我只想讓我的文本框顯示在我的窗口中。這裏是我的代碼:爲什麼我的項目沒有顯示在JFrame中?
import java.awt.Font;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
public class FirstGUI extends JFrame{
public void GUI(){
setTitle("Welcome");
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
setSize(600,600);
JLabel title = new JLabel();
title.setText("Apple Inc. Member Login Port");
title.setFont(new Font("Arial", Font.PLAIN, 24));
JTextField login = new JTextField("Login",10);
JPasswordField pass = new JPasswordField("Password");
add(title);
add(login);
add(pass);
}
public static void main(String[] args){
FirstGUI a = new FirstGUI();
a.GUI();
}
}
但是當我運行它,我得到這個:
我相信你需要添加你的組件到'context pane'而不是直接添加到框架。請參閱http://docs.oracle.com/javase/tutorial/uiswing/components/toplevel.html – 2013-05-07 00:58:50
@ PM77-1我相信自Java 5以來,不再需要將「JFrame#add」委託給您的內容窗格 – MadProgrammer 2013-05-07 01:20:32