事件处理
Posted xiaoqiuyueming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了事件处理相关的知识,希望对你有一定的参考价值。
package Demo;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class chuangkou implements ActionListener{
JFrame f;
JPanel p;
JButton b;
JLabel l;
public chuangkou() {
f=new JFrame();
p=new JPanel(null);
b=new JButton("确定");
l=new JLabel();
b.addActionListener(this);
f.add(p);
p.add(b);
p.add(l);
f.setVisible(true);
f.setSize(400,400);
l.setBounds(50,120,50,50);
b.setBounds(150,150,80,80);
}
public static void main(String[] args) {
new chuangkou();
}
public void actionPerformed(ActionEvent e) {
p.setBackground(Color.pink);
l.setText("嘿嘿嘿嘿嘿");
b.setBounds(250,50,80,80);
}
}
以上是关于事件处理的主要内容,如果未能解决你的问题,请参考以下文章
Android 事件分发事件分发源码分析 ( Activity 中各层级的事件传递 | Activity -> PhoneWindow -> DecorView -> ViewGroup )(代码片段