⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jdesktoppane.java

📁 iReport-0.4.1-src是iReport的源代码,iReport是一个开源的报表项目,可以生成PDF等格式报表
💻 JAVA
字号:
/* * JPanel.java * * Created on 14 giugno 2004, 18.53 */package it.businesslogic.ireport.gui.docking;/** * * @author  Administrator */public class JDesktopPane extends javax.swing.JPanel {        /** Creates new form JPanel */    public JDesktopPane() {        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        java.awt.GridBagConstraints gridBagConstraints;        jSplitPane1 = new javax.swing.JSplitPane();        jTree1 = new javax.swing.JTree();        jSplitPane2 = new javax.swing.JSplitPane();        setLayout(new java.awt.BorderLayout());        setBackground(new java.awt.Color(255, 255, 102));        jSplitPane1.setLeftComponent(jTree1);        jSplitPane2.setResizeWeight(1.0);        jSplitPane1.setRightComponent(jSplitPane2);        add(jSplitPane1, java.awt.BorderLayout.CENTER);    }//GEN-END:initComponents            // Variables declaration - do not modify//GEN-BEGIN:variables    private javax.swing.JSplitPane jSplitPane1;    private javax.swing.JSplitPane jSplitPane2;    private javax.swing.JTree jTree1;    // End of variables declaration//GEN-END:variables    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -