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);
}
}
間違いが理解できない..