?? gameoverd.java
字號:
package dialog;import javax.swing.*;import TFrame;/** * Title: * Description: * Copyright: Copyright (c) 2001 * Company: * @author * @version 1.0 */public class GameOverD extends JDialog { public GameOverD(TFrame tframe,int nMyScore,int nRivalScore) { super(tframe); setTitle("分數報告"); setSize(251,223); setLocation(400,300); getContentPane().add(new GameOverP(this,nMyScore,nRivalScore)); show(); } public static void main(String args[]) { new GameOverD(null,1,2); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -