我想JTextField中使用的borderlayout在面板上的中心出現,但它沒有出現,按鈕出現,但JTextField中不..JTextField是沒有出現
import java.awt.*;
import javax.swing.*;
public class cal {
public static void main(String[] args) {
JFrame frame= new JFrame();
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400, 300);
frame.setLayout(new FlowLayout());
JPanel panel= new JPanel();
panel.setLayout(new BorderLayout());
JTextField answer= new JTextField("0");
panel.add(answer, BorderLayout.CENTER);
frame.add(panel);
}
}
調用'frame.setVisible(true);'只有所有組件都被添加了。 – Berger
什麼按鈕?您在此處沒有按鈕...您還應該「包裝」框架 –