📄 showflow.java
字号:
import java.awt.*;public ShowFlow extends Frame{ public ShowFlow() { super("FlowLayout"); setLayout(new FlowLayout()); add(new Button("button1")); add(new Button("button2")); add(new Button("button2")); add(new Button("button2")); addWindowListener(new WindowCloser()); pack(); show(); } public static void main(String args[]) { ShowFlow fl=new ShowFlow(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -