绘画JFrame难度

时间:2014-05-30 02:36:49

标签: java swing colors jpanel paintcomponent

在我的代码中,我试图通过JFrame绘画,但它没有正确绘画。我告诉框架在我创建它的开始绘制,但是一旦创建它就是正常的灰色。我认为这可能与我正在重新绘制它的事实有关,如果是这样,我怎样才能确保它重新粉刷黄色?有人可能试图弄清楚为什么我的代码没有绘制JFrame黄色?谢谢!

public class EvolutionColor {

    public static void main(String args[]) {
        JFrame frame = new JFrame("Bouncing Ball");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        BallPanel bp = new BallPanel();
        frame.add(bp);
        frame.setSize(600, 600); // set frame size
        frame.setVisible(true); // display frame
        frame.setBackground(Color.YELLOW);
    }

    class BallPanel extends JPanel implements ActionListener {

        private int delay = 10;
        protected Timer timer;

        private int x = 0;        // x position
        private int y = 0;        // y position
        private int radius = 15;  // ball radius

        private int dx = 2;       // increment amount (x coord)
        private int dy = 2;       // increment amount (y coord)

        public BallPanel() {
            timer = new Timer(delay, this);
            timer.start();       // start the timer
        }

        public void actionPerformed(ActionEvent e) {
            repaint();
        }

        public void paintComponent(Graphics g) {
            super.paintComponent(g); // call superclass's paintComponent 
            g.setColor(Color.red);

// check for boundaries
            if (x < radius) {
                dx = Math.abs(dx);
            }
            if (x > getWidth() - radius) {
                dx = -Math.abs(dx);
            }
            if (y < radius) {
                dy = Math.abs(dy);
            }
            if (y > getHeight() - radius) {
                dy = -Math.abs(dy);
            }

// adjust ball position
            x += dx;
            y += dy;
            g.fillOval(x - radius, y - radius, radius * 2, radius * 2);
        }


}

2 个答案:

答案 0 :(得分:4)

不要将JFrame设置为黄色,将BallPanel对象设置为黄色。

答案 1 :(得分:3)

BallPanel透明......

bp.setOpaque(false);

不要在paintComponent方法中做出有关组件状态的决定,这些决定应该在您actionPerformed方法中进行

绘画用于绘画,paintComponent可能因任何原因而被调用,许多原因是你无法控制