📄 aboutframe.java
字号:
package net.aetherial.gis.surface;
import javax.swing.*;
import java.awt.*;
import com.borland.jbcl.layout.*;
public class AboutFrame extends JFrame {
XYLayout xYLayout1 = new XYLayout();
public AboutFrame() {
try {
jbInit();
}
catch(Exception ex) {
ex.printStackTrace();
}
}
void jbInit() throws Exception {
this.getContentPane().setLayout(xYLayout1);
}
public static void main(String[] args) {
AboutFrame aboutFrame = new AboutFrame();
aboutFrame.setSize(500,500);
aboutFrame.show();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -