📄 filechooser.java
字号:
package hfmCompress;
import java.awt.FileDialog;
import java.awt.Frame;
import java.awt.Color;
public class FileChooser extends FileDialog{
public FileChooser(String titleArg){
super(new Frame());
this.setTitle(titleArg);
this.setSize(100,100);
this.setLocation(300,200);
this.setBackground(Color.BLACK);
}
public static void main(String Args[]){
FileChooser choose=new FileChooser("auhdf");
choose.setVisible(true);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -