testflash.java
来自「一个很好的医院管理软件」· Java 代码 · 共 39 行
JAVA
39 行
package src;
import javax.swing.JFrame;
import java.awt.Window;
public class TestFlash {
private JFrame frame;
/**
* Launch the application
* @param args
*/
public static void main(String args[]) {
try {
TestFlash window = new TestFlash();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Create the application
*/
public TestFlash() {
initialize();
}
/**
* Initialize the contents of the frame
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 500, 375);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?