⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queenwindowevent.java

📁 八皇后游戏
💻 JAVA
字号:
/*
 * QueenWindowEvent.java
 *
 * Created on 2008年3月9日, 下午10:04
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package javaapplication15;

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

/**
 *
 * @author vivi
 */
public class QueenWindowEvent extends WindowAdapter {
    public void windowClosing(WindowEvent e){
        System.exit(0);                                                   //点击主窗体的叉,退出游戏
    }
    
    /** Creates a new instance of QueenWindowEvent */
    public QueenWindowEvent() {
    }
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -