JAVA按钮设置了不显示

packagelab13;importjava.awt.*;importjava.awt.Button;importjava.awt.Color;importjava.a... package lab13;
import java.awt.*;
import java.awt.Button;
import java.awt.Color;
import java.awt.Frame;
import java.awt.Panel;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.*;

public class ActionEventFrame extends Frame implements ActionListener {
Button bt1,bt2,bt3;
public void ActionListener() {
Panel a=new Panel();
bt1=new Button("红色");
bt2=new Button("绿色");
bt3=new Button("蓝色");
a.add(bt1);
a.add(bt2);
a.add(bt3);
this.add(a,"North");
bt1.addActionListener(this);
bt2.addActionListener(this);
bt3.addActionListener(this);
}
public void actionPerformed(ActionEvent e) {
String btnLabel=e.getActionCommand();
if (btnLabel.equals("红色")){
setBackground(Color.red);
}else if (btnLabel.equals("绿色")){
setBackground(Color.green);
}else if (btnLabel.equals("蓝色")){
setBackground(Color.blue);
}
}
public static void main(String[] args) {
ActionEventFrame b=new ActionEventFrame();
b.setTitle("ActionEvent事件处理");
b.setSize(300, 200);
b.setVisible(true);
b.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent arg0) {
System.exit(0);
}
});
}
}
//大佬帮忙看看,感觉没出错,就是运行不出来
展开
 我来答
雪飞潇潇
2019-05-28 · TA获得超过6274个赞
知道大有可为答主
回答量:1968
采纳率:91%
帮助的人:866万
展开全部

出错的地方

public void ActionListener(){ //..这是一个普通的方法
    
}

修改成下面的代码

public ActionEventFrame() { //这就是窗口的构造方法了, 
}
帐号已注销
2019-05-28 · 贡献了超过296个回答
知道答主
回答量:296
采纳率:10%
帮助的人:16.9万
展开全部
现在暂时是没有的,建议百度查询。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式