repaint()没有调用paintComponent()?

时间:2013-11-25 23:22:53

标签: swing graphics paintcomponent repaint actionevent

您好我正在尝试解决以下问题:编写一个程序,提示用户使用文本字段输入中心点和半径的x和y位置。当用户单击“绘制”按钮时,在组件中绘制一个具有该中心和半径的圆。我没有看到我的代码有什么问题,但是因为它看起来不像repaint()正在调用paintComponent(),因为消息将更改为TESTING 1而不是TESTING 2并且没有绘制。 我的代码:

import java.util.*;
import javax.swing.*;
import java.awt.*;
import java.applet.*;
import java.awt.geom.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class q3{

    public static class cgPanel extends JPanel{
        private static double x;
        private static double y;
        private static double r;
        private static JTextField xField;
        private static JTextField yField;
        private static JTextField rField;
        private static JButton draw;
        private static JLabel message;
//This is all just Layout work.
        public cgPanel(){
            setLayout(new BorderLayout());
            JPanel drawPanel = new JPanel();
            drawPanel.setBackground(Color.WHITE);
            add(drawPanel, BorderLayout.CENTER);
            message = new JLabel("");
            JPanel sub1ForSub1 = new JPanel();
            sub1ForSub1.add(message);
            JLabel coordinates = new JLabel("Coordinates:");
            JPanel sub2ForSub1 = new JPanel();
            sub2ForSub1.add(coordinates);
            JPanel subPanel1 = new JPanel();
            subPanel1.setLayout(new GridLayout(2, 1));
            subPanel1.add(sub1ForSub1);
            subPanel1.add(sub2ForSub1);
            JLabel xLabel = new JLabel("x:");
            xField = new JTextField(4);
            JLabel yLabel = new JLabel(" y:");
            yField = new JTextField(4);
            JLabel rLabel = new JLabel(" Radius:");
            rField = new JTextField(4);
            JPanel subPanel2 = new JPanel();
            subPanel2.add(xLabel);
            subPanel2.add(xField);
            subPanel2.add(yLabel);
            subPanel2.add(yField);
            subPanel2.add(rLabel);
            subPanel2.add(rField);
            draw = new JButton("Draw");
            ActionListener bL = new ButtonListener();
            draw.addActionListener(bL);
            JPanel subPanel3 = new JPanel();
            subPanel3.add(draw);
            JPanel Panel = new JPanel();
            Panel.setLayout(new BorderLayout());
            Panel.add(subPanel1, BorderLayout.NORTH);
            Panel.add(subPanel2, BorderLayout.CENTER);
            Panel.add(subPanel3, BorderLayout.SOUTH);
            add(Panel, BorderLayout.SOUTH);
            setVisible(true);
        }
        static class ButtonListener extends JComponent implements ActionListener{
            public void actionPerformed(ActionEvent e){
                try{
                    String xString = xField.getText();
                    String yString = yField.getText();
                    String rString = rField.getText();
                    message.setText("TESTING 1");
                    x = Double.parseDouble(xString);
                    y = Double.parseDouble(yString);
                    r = Double.parseDouble(rString);
                    repaint();
                }
                catch (NumberFormatException exception){
                    message.setText("Please enter a number.");
                }
            }
//This is where I cant seem to get the code in paintComponent to run when the Draw button is pressed.
            public void paintComponent(Graphics g){
                Graphics2D g2 = (Graphics2D) g;
                Ellipse2D.Double circle = new Ellipse2D.Double(x - r, y - r, r*2, r*2);
                g2.draw(circle);
                message.setText("TESTING 2");
            }
        }
    }
    public static void main(String[] args){
        JFrame frame = new JFrame();
        frame.setSize(800, 800);
        frame.setTitle("Circle Generator");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        cgPanel panel = new cgPanel();
        frame.add(panel);
        frame.setVisible(true);
    }
}

1 个答案:

答案 0 :(得分:0)

所以,有几件事。

你的问题源于你的ButtonListener正在扩展JComponent,因此repaint()方法正在调用ButtonListener(实际上不是JComponent)的方法。

paintComponent方法也适用于ButtonListener。

相反,您希望您的按钮侦听器可以访问您的cgPanel,因此它可以告诉IT重新绘制。并且你的paintComponent需要被移动到cgPanel,但即便如此,你可能不希望它在那里,因为你在cgPanel上有许多其他组件。

从您的代码中不清楚您真正希望绘制圆圈。

您应该创建一个扩展JPanel的CirclePanel,并覆盖paintComponent以绘制您的圆圈,然后将其添加到您的cgPanel。然后让你的ButtonListener告诉CirclPanel实例重绘。