📄 queenwindowevent.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 + -