要創建一個JFrame窗口,您可以按照以下步驟進行:
import javax.swing.JFrame;
JFrame frame = new JFrame("My Frame");
frame.setSize(400, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null); // 將窗口置于屏幕中央
frame.setVisible(true);
// 創建一個按鈕
JButton button = new JButton("Click me");
// 將按鈕添加到窗口中
frame.add(button);
public static void main(String[] args) {
JFrame frame = new JFrame("My Frame");
frame.setSize(400, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
// 添加其他組件
frame.setVisible(true);
}
通過這些步驟,您就可以創建一個簡單的JFrame窗口并在其中添加其他Swing組件。您可以根據需要自定義窗口的外觀和功能。