1

我需要一些帮助来理解为什么绘图在 JComponent 和 JPanel 中的工作方式不同。

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;

import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Particle extends JComponent implements Runnable{
    private int x = 45;
    private int y = 45;
    private int cx;
    private int cy;
    private int size;
    private Color color;
    private JFrame frame;

    public Color getColor(){
        return color = new Color(100,0,190);
    }

    public Particle(){
        frame = new JFrame();
        frame.setSize(400, 400);
        frame.setResizable(false);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(this);
        frame.setVisible(true);
    }

    public void update(){
        x+=1;
        y+=1;
    }

    public void paintComponent(Graphics g){
        Graphics2D g2d = (Graphics2D) g.create();
        g2d.setColor(getColor());

        g2d.fillRect(x, y, 4, 4);
    }

    public void startThread(){
        Thread thread = new Thread(this);
        thread.start();
    }

    @Override
    public void run() {
        for(int i = 0; i <= 200; i++){
            try{
                update();
                repaint();
                Thread.sleep(4);    
            }catch(Exception e){
                System.out.print("Exception at thread.start()");
            }
        }
    }

    public static void main(String[] args) {
        Particle particle = new Particle();
        particle.startThread();
    }
}

在上面这个例子中,“粒子”从 A 点移动到 B 点就好了。

但是当我将 Particle 从 JComponent 子类化到 JPanel 时..

绘图形成一条线..即矩形永远不会从它开始的地方消失..

为什么会这样?

4

2 回答 2

5

Toilal发布了一个解决方案。我想解释为什么

的 API 文档paintComponentJComponent

此外,如果你没有调用 super 的实现,你必须遵守 opaque 属性,也就是说,如果这个组件是不透明的,你必须用不透明的颜色完全填充背景。如果您不尊重 opaque 属性,您可能会看到视觉伪影。

setOpaque_JComponent

此属性的默认值为 false JComponentJComponent但是,大多数标准子类(例如JButton和)上此属性的默认值JTree取决于外观。

添加此代码:

System.out.println(isOpaque());
  • JComponent万一false被打印。
  • JPanel万一true被打印。

就这样。

于 2013-06-08T10:38:28.033 回答
3

在paintComponent 实现中调用super.paintComponent(g)。

public void paintComponent(Graphics g) {
  super.paintComponent(g);

  Graphics2D g2d = (Graphics2D) g.create();
  g2d.setColor(getColor());
  g2d.fillRect(x, y, 4, 4);

}
于 2013-06-08T10:16:35.723 回答