Java事件处理程序
Posted smyhhh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java事件处理程序相关的知识,希望对你有一定的参考价值。
1.完成一个按钮的事件处理程序,实现功能自拟,例如:改变窗口的背景颜色,改变按钮的位置等等
代码
1 package Person; 2 import java.awt.*; 3 import javax.swing.*; 4 5 class Example extends JFrame{ 6 public void CrFrame(String title){ 7 JFrame f=new JFrame(title); 8 Container container=f.getContentPane(); //容器 9 10 JLabel l=new JLabel("这是一个居中的标签 :)"); //标签 11 l.setHorizontalAlignment(SwingConstants.CENTER); //标签居中 12 container.add(l); 13 container.setBackground(Color.pink); 14 f.setVisible(true); 15 f.setSize(500,500); 16 f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); 17 } 18 } 19 20 public class Button { 21 public static void main(String[] args) { 22 new Example().CrFrame("来创建一个窗口"); 23 } 24 25 }
运行界面
以上是关于Java事件处理程序的主要内容,如果未能解决你的问题,请参考以下文章