创建一个AWT面板,该面板包含3个不同颜色名称的按钮,单击每个按钮时应使窗口的背景色显示为相应的颜色。

创建一个AWT面板,该面板包含3个不同颜色名称的按钮,单击每个按钮时应使窗口的背景色显示为相应的颜色。下面是我自己编写的,谁能帮我编写下,使程序能用.importjava... 创建一个AWT面板,该面板包含3个不同颜色名称的按钮,单击每个按钮时应使窗口的背景色显示为相应的颜色。
下面是我自己编写的,谁能帮我编写下,使程序能用.
import java.awt.*;
import java.awt.event.*;
public class Jawt implements ActionListener {
Frame frm;
Button b1;
Button b2;
Button b3;
Panel P;
public static void main(String args[]){
new Jawt().init();
}
public void init(){
Frame frm=new Frame("点击按钮显示相应颜色");
frm.setLayout(new FlowLayout());
Button b1=new Button("红色");
Button b2=new Button("蓝色");
Button b3=new Button("黄色");
Panel p=new Panel();
frm.add(b1);
frm.add(b2);
frm.add(b3);
frm.add(p);
frm.setSize(400,300);
frm.setVisible(true);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
}
public void actionPerformed(ActionEvent e){
if(e.getSource()==b1){p.setBackground(Color.red);}
else if(e.getSource()==b2){p.setBackground(Color.blue;}
else if(e.getSource()==b3){p.setBackground(Color.yellow);}
}

}
展开
 我来答
kkkeeekkk
2008-06-05 · TA获得超过5091个赞
知道小有建树答主
回答量:1092
采纳率:100%
帮助的人:354万
展开全部
import java.awt.*;
import java.awt.event.*;
refer buton b1,b2,b3
public class Jawt implements ActionListener {
Frame frm;
Button b1;
Button b2;
Button b3;
Panel P;
public static void main(String args[]){
new Jawt().init();
}
public void init(){
Frame frm=new Frame("click to show the color");
frm.setLayout(new FlowLayout());
Button b1=new Button("red");
Button b2=new Button("blue");
Button b3=new Button("yellow");
frame
Panel p=new Panel();
frm.add(b1);
frm.add(b2);
frm.add(b3);
frm.add(p);
frm.setSize(400,300);
frm.setVisible(true);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
frame 3rd (back to line 18)
}
public void actionPerformed(ActionEvent e){
if(e.getSource()==b1){p.setBackground(Color.red);}
else if(e.getSource()==b2){p.setBackground(Color.blue;}
else if(e.getSource()==b3){p.setBackground(Color.yellow);}
}

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式