📄 myframe.java
字号:
import javax.swing.JFrame;
/*
* MyFrame.java
*
* Created on 2007年10月20日, 下午10:19
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
/**
*
* @author admin
*/
public class MyFrame {
public static void main(String[] args) {
JFrame frame = new JFrame("My Frame-我的窗口");
frame.setSize(400, 300);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -