我已经使用 Netbeans GUI Designer 提出了一个 JFrame,我希望使用 Netbeans GUI Designer 将两个 s 传递给已经放置在 JFrame 内JPanel
的 2 个虚拟s。JPanel
但是,下面的代码不起作用,并且JFrame
出现空白。为什么呢?
public Summary_Page(JPanel jp1,JPanel jp2) {
initComponents();
this.jp1=jp1;
this.jp2=jp2;
this.setVisible(true);
}