我正在尝试设置 JPanel 的宽度和高度。但它不起作用。这是代码。
import java.awt.*;
import javax.swing.*;
public class FirstGuiApp extends JFrame {
public static void main(String[] args) {
JFrame frm = new JFrame("first gui app");
JPanel txtPanel = new JPanel();
txtPanel.setBackground(Color.cyan);
txtPanel.setSize(200,50);// **not working**
frm.getContentPane().add(BorderLayout.NORTH,txtPanel);
frm.setVisible(true);
frm.setSize(450, 350);
frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frm.setLocationRelativeTo(null);
}
}
无法理解错误..