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