3

作为我的软件工程课程的第一个作业,我正在做这个非常基本和简单的 Swing 教程,并且由于一些非常奇怪的原因,我的 JPanel 中没有调用paintComponent 方法。现在我过去曾使用过 Java Swing,但从未遇到过这样的问题。

我正在使用的教程可以在 Oracle 站点上找到(更容易访问该站点并查看代码,因为它与我的代码相同)。

教程链接

谁能向我解释为什么它对我不起作用?

我的代码:

import javax.swing.SwingUtilities;
import javax.swing.JFrame;
import javax.swing.JPanel    
import javax.swing.BorderFactory;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;

public class PaintDemo {

public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            createGUI();
        }
    });
}

private static void createGUI() {
    System.out.println("Created GUI on EDT? "+
            SwingUtilities.isEventDispatchThread());
    JFrame frame = new JFrame("Yay, first 2102 lab!!");
    frame.setDefaultCloseOperation(frame.EXIT_ON_CLOSE);        // allows to close the program
    DemoPanel panel = new DemoPanel();
    frame.add(panel);
    frame.pack();
    frame.setVisible(true);
}
}

class DemoPanel extends JPanel {

public DemoPanel() {
    setBorder(BorderFactory.createLineBorder(Color.BLACK));
}

public Dimension getPreferredSize() {
    return new Dimension(250,200);
}

public void paintComponenet(Graphics g) {
    super.paintComponent(g);
    g.drawString("This is my custom panel!",10,20);
}
}
4

1 回答 1

5

它是paintComponent(Graphics g),不是paintComponenet(Graphics g)

至少你super.paintComponent(g)正确地调用了。

如果你paint*用注解来注解你的方法@Override,你会得到一个编译错误,这将帮助你理解发生了什么。

于 2013-01-27T16:24:42.240 回答