创建一个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);}
}
} 展开
下面是我自己编写的,谁能帮我编写下,使程序能用.
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);}
}
} 展开
展开全部
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);}
}
}
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);}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询