当 Applet.setVisible(false); 时,我一直在尝试绘制 Applet 的图形;并在 JPanel.visible(true); 时将其绘制到我的 JPanel 上;
我尝试使用 Image i = Applet.createImage(width,height); 然后使用 g.drawImage(i, 0, 0, this); 将图像绘制到我的 JPanel;
当调用 JPanel.paintComponent(Graphics g)... 时,我只剩下一个空白 JPanel。
有更好的方法吗?