事件处理程序
Posted xiayan123147
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了事件处理程序相关的知识,希望对你有一定的参考价值。
完成一个按钮的事件处理程序,实现功能自拟,例如:改变窗口的背景颜色,改变按钮的位置等等。
package 事件处理;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class xy implements ActionListener{
JFrame f;
JPanel p;
JButton b;
public xy() {
f=new JFrame("窗口");
p=new JPanel();
b=new JButton("点击一下");
b.addActionListener(this);
p.add(b);
f.add(p);
f.setSize(400,200);
f.setVisible(true);
}
public static void main(String[] args) {
new xy();
}
public void actionPerformed(ActionEvent arg) {
p.setBackground(Color.red);
}
}
运行结果:
以上是关于事件处理程序的主要内容,如果未能解决你的问题,请参考以下文章