0
當我運行這段代碼時PaintComponent永遠不會被調用,因爲「繪製」消息永遠不會被打印,我不知道爲什麼?誰能幫忙?PaintComponent不會被JPanel調用
public class DisplayManager extends JPanel {
public static final int WIDTH = 700, HEIGHT = 900;
public Bottle bottle1 = new Bottle("res/bottleimage.png");
public Slider slider1 = new Slider();
public void initDisplay()
{
JFrame frame = new JFrame();
JPanel panel = new JPanel();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(new Dimension(WIDTH, HEIGHT));
frame.add(panel);
frame.setVisible(true);
}
@Override
public void paintComponent(Graphics g)
{
super.paintComponent(g);
bottle1.imageIcon.paintIcon(this, g, 50, 50);
System.out.println("painted");
}
}
如果你的'DisplayManager'應該是'JPanel',你必須將'DisplayManager'添加到'Frame'而不是一個新的'JPanel'。 'frame.add(this)'而不是'frame.add(面板)' –
感謝夥計這工作 – PDPIG
@PDPIG,這只是解決方案的一半。 – camickr