📄 simpleframe.java
字号:
// SimpleFrame.java// A simple example of the JFrame class.//package jswing.ch08;import javax.swing.*;public class SimpleFrame { public static void main(String args[]) { JFrame f = new JFrame("Simple Frame"); f.setSize(200,100); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.setVisible(true); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -