其他分享
首页 > 其他分享> > 【GUI】关闭窗口

【GUI】关闭窗口

作者:互联网

package com.hyr.lesson01;

import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

//Panel可以看成是一个空间,但是不能单独存在
public class TestPanel {
    public static void main(String[] args) {
        Frame frame = new Frame();
        Panel panel = new Panel();    //布局的概念
        //设置布局
        panel.setLayout(null);
        //坐标
       frame.setBounds(300,300,500,500);
       frame.setBackground(new Color(97, 220, 103));

       //panle 设置坐标,相对于frame
        panel.setBounds(50,50,40,40);
        panel.setBackground(new Color(212, 63, 63));

        frame.add(panel);
        frame.setVisible(true);

        //监听时事件,监听窗口关闭事件,System.exit()
        //适配器模式
        frame.addWindowListener(new WindowAdapter() {
            //窗口点击关闭的时候需要做的事情
            @Override
            public void windowClosing(WindowEvent e) {
                //结束程序
                System.exit(0);
            }
        });
    }
}

 

标签:窗口,java,GUI,public,关闭,import,new,frame,panel
来源: https://www.cnblogs.com/hanyr/p/16213262.html