paint方法将白色层添加到Java GUI

时间:2012-10-13 17:48:00

标签: java swing user-interface

此代码应创建一个黑色窗口,然后在其上添加一条线和多边形。

public class gui extends JFrame {

 JPanel pane = new JPanel();
 gui(String title){
    super(title);
    setBounds(100,100,500,500);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container con = this.getContentPane();
    pane.setBackground(new Color(0,0,0));
    con.add(pane);
    setVisible(true);
 }

 public void paint(Graphics g){

    g.drawLine(100, 100, 400, 400);

    Point p1 = new Point(400, 100);
    Point p2 = new Point(100, 300);
    Point p3 = new Point(200, 400);

    int[] xs = { p1.x, p2.x, p3.x };
    int[] ys = { p1.y, p2.y, p3.y };
    Polygon triangle = new Polygon(xs, ys, xs.length);

    g.setColor(new Color(250,0,0));
    g.fillPolygon(triangle);
 }
}

当我删除paint()方法时,会按预期创建纯黑色GUI。

但是,当paint()方法到位时,您会在白色背景上获得线条和多边形 ,而不是黑色背景。

如何让黑色背景显示出来?

1 个答案:

答案 0 :(得分:3)

您需要致电

super.paint(g);

在您的paint方法中。

在Swing中,首选方法是覆盖paintComponent,但由于JFrame实际上不是JComponent,因此不会调用此方法。要使用此方法,可以将功能移至自定义JComponent