📄 i_p_lab2app.java
字号:
/* * I_p_lab2App.java */package i_p_lab2;import org.jdesktop.application.Application;import org.jdesktop.application.SingleFrameApplication;/** * The main class of the application. */public class I_p_lab2App extends SingleFrameApplication { /** * At startup create and show the main frame of the application. */ @Override protected void startup() { show(new I_p_lab2View(this)); } /** * This method is to initialize the specified window by injecting resources. * Windows shown in our application come fully initialized from the GUI * builder, so this additional configuration is not needed. */ @Override protected void configureWindow(java.awt.Window root) { } /** * A convenient static getter for the application instance. * @return the instance of I_p_lab2App */ public static I_p_lab2App getApplication() { return Application.getInstance(I_p_lab2App.class); } /** * Main method launching the application. */ public static void main(String[] args) { launch(I_p_lab2App.class, args); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -