改变按钮颜色的java事件,个人成果!

作者在 2013-01-17 13:21:12 发布以下内容

import java.awt.*;
import java.awt.event.*;
public class Eventest
{
 Button btn1=new Button("单击");
 Frame myframe=new Frame("测试单击事件");
 public void init(){
  btn1.setSize(30,26);
  btn1.addActionListener(new ActionListener(){
   public void actionPerformed(ActionEvent e){
    if(btn1.getBackground()==Color.red)
     btn1.setBackground(Color.white);
      else
      btn1.setBackground(Color.red);
   }
  });
  myframe.setBounds(300,200,200,200);
  myframe.add(btn1);
  myframe.setVisible(true);

 }

 public static void main(String[] args)
 {
  new Eventest().init();
 }
}

默认分类 | 阅读 1758 次
文章评论,共0条
游客请输入验证码
文章分类
文章归档
最新评论