📄 rivercrescent.java
字号:
/**
* @(#)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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -