【问题标题】:JPanel repaint issueJPanel 重绘问题
【发布时间】:2011-11-05 00:06:56
【问题描述】:

我有一个 JFrame,它在 BorderLayout 中包含 2 个 JPanel 子类和 2 个 JLabel。其中一个 JPanel 包含 JButton,另一个用于显示图形。 JLabel 位于南北,按钮 JPanel 在西,显示 JPanel 在中心。

显示JPanel 需要不断刷新,所以我通过swing timer 生成的动作事件调用它的repaint() 方法。我还重写了它的 paintComponent() 方法来绘制我的绘图。

不是显示我绘制的内容,而是将“JFrame 的内容”绘制到显示 JPanel 上。我知道我可以在绘制之前使用 g.fillRect() 或 super.paintComponent() 简单地“清除”显示 JPanel。

我只是好奇为什么会这样。

我正在使用 jdk 1.6u27。以下是我的代码:

package test;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;

public class Main {

public static void main(String[] args) {
    Simulation sim = new Simulation();

    }
}

class Simulation extends JFrame {

    public JLabel state;
    private JLabel id;
    private ButtonPanel control;
    private Display display;

    public Simulation() {
        id = new JLabel("Test");
        state = new JLabel("Test");
        control = new ButtonPanel();
        display = new Display(this);

        this.setLayout(new BorderLayout());
        this.add(id, BorderLayout.NORTH);
        this.add(control, BorderLayout.WEST);
        this.add(display, BorderLayout.CENTER);
        this.add(state, BorderLayout.SOUTH);

        this.setSize(500, 600);
        this.setVisible(true);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    }

    public ButtonPanel getControl() {
        return this.control;
    }
}

class ButtonPanel extends JPanel implements ActionListener {

    public JButton b[] = new JButton[8];
    public boolean bp[] = new boolean[8];

    public ButtonPanel() {
        this.setLayout(new GridLayout(8, 1));

        for (int i = 0; i < b.length; i++) {
            b[i] = new JButton(""+i);
            b[i].addActionListener(this);
            bp[i] = false;
            this.add(b[i]);
        }
    }

    public void actionPerformed(ActionEvent e) {
        //do something
    }
}

class Display extends JPanel implements ActionListener {

    private Timer tm;
    private int yco;
    private Simulation sim;

    public Display(Simulation sim) {
        tm = new Timer(100, this);
        tm.start();

        yco = 0;

        this.sim = sim;
    }

    @Override
    public void paintComponent(Graphics g) {
        //draw something
        g.drawLine(0, yco, 100, 100);
    }

    public void actionPerformed(ActionEvent e) {
        yco ++;
        this.repaint();
    }
}

【问题讨论】:

标签: java swing jframe jpanel


【解决方案1】:

如果没有super.paintComponent(g),结果取决于您的平台对JPanel UI 委托PanelUIopacity 属性的默认设置。我的恰好是true,但您可以在您的平台上进行实验,如下所示。

附录:“如果您不遵守opaque property,您可能会看到视觉上的artifacts。”—paintComponent()。您观察到的artifact 会因平台而异,但并非非典型。实际上,您违反了绘制每个像素的承诺,并且您会看到某个缓冲区中剩余的任何内容。

import java.awt.*;
import java.awt.event.*;
import java.util.ArrayList;
import java.util.List;
import javax.swing.*;

public class Main {

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                Simulation sim = new Simulation();
            }
        });
    }
}

class Simulation extends JFrame {

    public JCheckBox state;
    private JLabel id;
    private ButtonPanel control;
    private Display display;

    public Simulation() {
        id = new JLabel("Test");
        state = new JCheckBox("Opaque");
        control = new ButtonPanel();
        display = new Display(this);

        this.setLayout(new BorderLayout());
        this.add(id, BorderLayout.NORTH);
        this.add(control, BorderLayout.WEST);
        this.add(display, BorderLayout.CENTER);
        this.add(state, BorderLayout.SOUTH);
        state.addItemListener(new ItemListener() {

            @Override
            public void itemStateChanged(ItemEvent e) {
                display.setOpaque(e.getStateChange() == ItemEvent.SELECTED);
            }
        });
        state.setSelected(true);

        this.pack();
        this.setVisible(true);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    public ButtonPanel getControl() {
        return this.control;
    }
}

class ButtonPanel extends JPanel {

    private static final int N = 8;
    private List<JToggleButton> list = new ArrayList<JToggleButton>(N);

    public ButtonPanel() {
        this.setLayout(new GridLayout(0, 1));
        for (int i = 0; i < N; i++) {
            final JToggleButton b = new JToggleButton(String.valueOf(i));
            b.addActionListener(new ActionListener() {

                @Override
                public void actionPerformed(ActionEvent e) {
                    //System.out.println(b.isSelected());
                }
            });
            list.add(b);
            this.add(b);
        }
    }
}

class Display extends JPanel {

    private Simulation sim;
    private Timer tm;
    private int yco;

    public Display(Simulation sim) {
        this.setPreferredSize(new Dimension(320, 320));
        this.setOpaque(true);
        this.sim = sim;
        tm = new Timer(100, new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                yco++;
                repaint();
            }
        });
        tm.start();
    }

    @Override
    public void paintComponent(Graphics g) {
        //super.paintComponent(g);
        g.drawLine(0, yco, getWidth() / 2, getHeight() / 2);
    }
}

【讨论】:

  • 一般情况下,您应该调用super.paintComponent(g),否则“容器的轻量级后代不会出现。”
  • 我明白了,我不知道有这样的选项,谢谢你的解释。但我的问题实际上是 JFrame 的内容被绘制到显示 JPanel 上。例如,顶部标签和侧边按钮与那些黑线一起被绘制到显示 JPanel 上。
  • 我读过你提到的帖子和这个link。我不确定问题是否是由线程安全引起的。我将尝试发布屏幕截图以使我的问题更清楚。
  • @b1naryatr0phy: JComponent 提供paintComponent(); paintComponents() 继承自父 Container
猜你喜欢
  • 2010-09-06
  • 1970-01-01
  • 1970-01-01
  • 2014-08-03
  • 2013-06-22
  • 1970-01-01
  • 1970-01-01
  • 2021-09-11
  • 1970-01-01
相关资源
最近更新 更多