queenwindowevent.java
来自「八皇后游戏」· Java 代码 · 共 29 行
JAVA
29 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?