码迷,mamicode.com
首页 > 其他好文 > 详细

事件处理

时间:2019-05-06 19:26:14      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:[]   jbutton   str   cti   com   事件   http   ati   round   

package ck;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class chuangkou implements ActionListener{
  JFrame chuangkou;
  JPanel m;
  JButton a;
  JLabel c;
public chuangkou() {
   chuangkou=new JFrame("事件处理练习窗口");
   a=new JButton("改变");
  m=new JPanel();
  c=new JLabel("单击");
  a.addActionListener(this);
  a.setBounds(40,60,80,60);  
  m.add(a);
  m.add(c);
  chuangkou.add(m);
  chuangkou.setVisible(true);
  chuangkou.setSize(500,600);
}
public void actionPerformed(ActionEvent e) {
    m.setBackground(Color.blue);
    
    
}
public static void main(String[]args) {
    new chuangkou();
}
}

技术图片         技术图片

 

事件处理

标签:[]   jbutton   str   cti   com   事件   http   ati   round   

原文地址:https://www.cnblogs.com/Maxsh/p/10821236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!