main.java

来自「7、学生学籍管理系统 调查所在学校学生处、教务处」· Java 代码 · 共 24 行

JAVA
24
字号
package file;

import javax.swing.JFrame;
import javax.swing.UIManager;

/******
 * 主类mian方法
 * ******/
public class Main {
	public static void main(String args[])
	{
		try {
			UIManager.setLookAndFeel("com.birosoft.liquid.LiquidLookAndFeel");
		} catch (Exception ex) {
			// nothing need to do
		}
		IndexFrame f=new IndexFrame();
		f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.show();
		
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?