rivercrescent.java
来自「一个基于NetBeans平台开发的」· Java 代码 · 共 35 行
JAVA
35 行
/**
* @(#)RiverCrescent.java
*
* JFC Sample application
*
* @author Sinpool
* @version 1.00 05/02/22
*/
package com.sinpool.rivercrescent;
import java.util.*;
import java.io.*;
import javax.swing.UIManager;
import com.sinpool.rivercrescent.GUI.*;
//import com.sinpool.rivercrescent
public class RiverCrescent {
public RiverCrescent() throws IOException{
try{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch (Exception e) {System.out.println("CrossPlatformLookAndFeel");}
RiverCrescentFrame rcf = new RiverCrescentFrame();
rcf.show();
}
public static void main(String[] args) throws IOException {
new RiverCrescent();
System.out.println("Over!");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?