如何使用jbuttons和actionlistener绘制椭圆?

时间:2012-07-24 00:08:09

标签: java swing japplet jcreator

我调查了一些可能已经回答的其他问题,我没有看到任何与我有关的问题,或者至少我理解的问题。

我正在尝试创建一个红绿灯,而我遇到的麻烦是当我点击按钮时实际绘制的红绿黄圈。非常感谢快速回答,谢谢。

public class TrafficLight extends JApplet implements ActionListener {

   private Image Hayden;

    JButton btn1;

    JButton btn2;

    JButton btn3;

    int x;

public void init() {

    setLayout(new FlowLayout());

    btn1 = new JButton("Stop");

    btn2 = new JButton("Wait");

    btn3 = new JButton("Go");

    Boolean Answer;

    add(btn1);

    btn1.addActionListener(this);

    add(btn2);

    btn2.addActionListener(this);

    add(btn3);

    btn3.addActionListener(this);

    Hayden = getImage(getDocumentBase(), "49.jpg");
}

public void actionPerformed(ActionEvent event){

    if (event.getSource()==btn1){
        boolean one = true;
    }
    if (event.getSource()==btn2){
        boolean two = true;
    }
    if (event.getSource()==btn3){
        boolean three = true;
    }
    repaint();

}
public void paint(Graphics g) {

    super.paint(g);

    g.setColor(Color.black);

    g.drawRect(0, 400, 700, 200);//creating the rectangle
    g.fillRect(0, 400, 700, 200);

    g.setColor(Color.black);
    g.drawRect(645, 0, 55, 155);//creating the rectangle
    g.fillRect(645, 0, 55, 155);

    g.setColor(Color.white);
    g.drawOval(650, 5, 45, 45);//creating the oval
    g.fillOval(650, 5, 45, 45);

    g.setColor(Color.white);
    g.drawOval(650, 55, 45, 45);//creating the oval
    g.fillOval(650, 55, 45, 45);

    g.setColor(Color.white);
    g.drawOval(650, 105, 45, 45);//creating the oval
    g.fillOval(650, 105, 45, 45);
    if (one == true){
        g.setColor(Color.red);
        g.drawOval(650,5,45,45);
    }
    else if (two == true){
        g.setColor(Color.red);
        g.drawOval(650,55,45,45);
    }
    else if (three == true){
        g.setColor(Color.red);
        g.drawOval(650,105,45,45);
    }
    g.drawImage(Hayden, 0, 500, 150, 100, this);//create the image

}


}

2 个答案:

答案 0 :(得分:1)

isSelected()方法与切换按钮更相关。在你的情况下actionPerformed()内,所有条件都不会返回true。快速而肮脏的修复可能是检查事件的来源,即:

if (event.getSource() == btn1){
    x = 5;
}

清洁工将是:

btn1.addActionListener(new ActionListener(){
    @Override
    public void actionPerformed(ActionEvent e) {
        x = 5;
    }
});

另外请注意,您是否在JPanel或JComponent上自定义绘图,然后将该组件添加到JApplet的内容窗格中。有关详细信息,请参阅Lesson: Performing Custom Painting

此外,建议使用布局管理器而不是绝对布局。查看A Visual Guide to Layout Managers了解更多相关信息。

请务必阅读How to Make Applets教程以获取一般指导原则。

编辑:关于

  

切了一下,希望不要错过}

您的上次编辑不正确,无法编译。您正在声明局部变量boolean one = true;并尝试在另一种方法中使用它。让boolean one成为班级成员。与twothree变量相同。

答案 1 :(得分:0)

你需要警惕的一件事是变量范围。布尔一,二,三有在各自的if语句中的范围。如果你创建这些布尔值实例变量(在类的顶部创建变量,如int x和你的按钮),那么它们的作用域就是整个类,并且可以在每个方法中引用它们。

JButton btn2;
JButton btn3;
boolean one, two three;

截至目前,这些布尔值无法通过任何内容访问,包括paint方法,而不是在各自的if语句中。