X  
登录

还没有账号?立即注册

忘记密码?
登陆
X  
注册

已经有账号?马上登陆

获取验证码
重新获取(60s)
立即注册
统计
  • 建站日期:2021-03-10
  • 文章总数:518 篇
  • 评论总数:155 条
  • 分类总数:32 个
  • 最后更新:4月20日
文章 未分类

鼠标监控和按钮监控事件案例,getActionCommand,getSource

梦幻书涯
首页 未分类 正文

import java.awt.Button;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
import java.io.IOException;

import javax.swing.JButton;

/*作者:wangcx
*日期:2019年6月10日
*时间:下午6:35:12
*/
public class GUI123 implements ActionListener {
 private Frame f;
 private  Button redbtu,greenbtu,bluebtu,resetbtu;
 JButton btu;
     public GUI123() {
        f=new Frame("红绿蓝");
        redbtu=new Button("红色");
        greenbtu=new Button("绿色");
        bluebtu=new Button("蓝色");
        resetbtu=new Button("JB");
        //btu.setToolTipText("登录到服务器");//设置组件提示信息
       
        f.add(redbtu);
        f.add(greenbtu);
        f.add(bluebtu);
        f.add(resetbtu);
       
        f.setBounds(400, 200, 400, 400);
        f.setLayout(new FlowLayout());
        f.setVisible(true);
       
        redbtu.addActionListener(this);
        greenbtu.addActionListener(this);
        bluebtu.addActionListener(this);
        resetbtu.addActionListener(this);

       
        redbtu.addMouseListener(new MouseAdapter() {
        
         public void mouseClicked(MouseEvent e) {
        
          if(e.getClickCount()==2) {
         
          
           redbtu.setBackground(Color.BLUE);
           f.setBackground(Color.BLUE);
           System.out.println("123双击!");
          }
         }
        
   });
       
       
        greenbtu.addMouseListener(new MouseAdapter() {
         public void mouseExited(MouseEvent e) {
      // TODO Auto-generated method stub
          f.setBackground(Color.white);
          System.out.println("鼠标退出");
     }
         public void mousePressed(MouseEvent e) {
      // TODO Auto-generated method stub
          f.setBackground(Color.GREEN);
      System.out.println("鼠标按下");
     }
         public void mouseEntered(MouseEvent e) {
         // TODO Auto-generated method stub
          System.out.println("鼠标进入");
         f.setBackground(Color.yellow);
         
        }
   });
     
     
   
       
              f.addWindowListener(new WindowAdapter() {
               public void windowClosing(WindowEvent w) {
                f.dispose();
               
               }
   });
             
              redbtu.addMouseListener(new MouseAdapter() {
              
   });
             
     }
 
 
 public static void main(String[] args) throws IOException {
  // TODO Auto-generated method stub
         
   new GUI123();
      
 }
 
   
 @Override
 public void actionPerformed(ActionEvent w) {
  // TODO Auto-generated method stub
  //有两种办法
  Object obj1=w.getActionCommand();//获取的是String 中的标签文字
  Object obj=w.getSource();//获取的是组件对象
  
  if(obj1 =="红色") {
   f.setBackground(Color.RED);
   
  }
  
    if(obj ==redbtu) {
     f.setBackground(Color.RED);
     
    }
 }


 

 

}

版权说明
文章采用: 《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权。
版权声明:未标注转载均为本站原创,转载时请以链接形式注明文章出处。如有侵权、不妥之处,请联系站长删除。敬请谅解!

-- 展开阅读全文 --
这篇文章最后更新于2019-6-10,已超过 1 年没有更新,如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢!
如何限制一个文本框只能输入数字的功能
« 上一篇
鼠标事件全面举例和升华
下一篇 »

发表评论

HI ! 请登录
注册会员,享受下载全站资源特权。
登陆 注册
永远的少年,永远的梦

热门文章