📄 opendialog.java
字号:
/* * opendialog.java * * Created on 2004年9月28日, 下午12:33 *//** * * @author litertiger */public class opendialog extends javax.swing.JDialog { /** Creates new form opendialog */ public opendialog(java.awt.Frame parent, boolean modal) { super(parent, modal); initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ private void initComponents() {//GEN-BEGIN:initComponents jFileChooser1 = new javax.swing.JFileChooser(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); getContentPane().add(jFileChooser1, java.awt.BorderLayout.CENTER); pack(); }//GEN-END:initComponents /** * @param args the command line arguments */ // 变量声明 - 不进行修改//GEN-BEGIN:variables private javax.swing.JFileChooser jFileChooser1; // 变量声明结束//GEN-END:variables }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -