📄 testfilechoose.java
字号:
package edu.xscj.test;
import javax.swing.*;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;
public class TestFileChoose extends JFrame {
public TestFileChoose() {
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
}
}
private void jbInit() throws Exception {
this.getContentPane().setLayout(xYLayout1);
this.getContentPane().add(jFileChooser1,
new XYConstraints(104, 52, 202, 38));
}
XYLayout xYLayout1 = new XYLayout();
JFileChooser jFileChooser1 = new JFileChooser();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -