progresspanel.java

来自「SWING的界面UI包 SWING的界面UI包」· Java 代码 · 共 65 行

JAVA
65
字号
/* * ProgressPanel.java * * Created on 2007年9月9日, 上午2:18 */package dyno.swing.designer.main;/** * * @author  rehte */public class ProgressPanel extends javax.swing.JPanel {        /** Creates new form ProgressPanel */    public ProgressPanel() {        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.     */    // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents    private void initComponents() {        pbProgress = new javax.swing.JProgressBar();        lblMessage = new javax.swing.JLabel();        setBackground(java.awt.Color.white);        pbProgress.setIndeterminate(true);        lblMessage.setText("Generating Designing View ...");        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);        this.setLayout(layout);        layout.setHorizontalGroup(            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)            .addGroup(layout.createSequentialGroup()                .addGap(113, 113, 113)                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)                    .addComponent(lblMessage, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)                    .addComponent(pbProgress, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 174, Short.MAX_VALUE))                .addContainerGap(113, Short.MAX_VALUE))        );        layout.setVerticalGroup(            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)            .addGroup(layout.createSequentialGroup()                .addGap(121, 121, 121)                .addComponent(lblMessage)                .addGap(18, 18, 18)                .addComponent(pbProgress, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)                .addContainerGap(124, Short.MAX_VALUE))        );    }// </editor-fold>//GEN-END:initComponents            // Variables declaration - do not modify//GEN-BEGIN:variables    private javax.swing.JLabel lblMessage;    private javax.swing.JProgressBar pbProgress;    // End of variables declaration//GEN-END:variables    }

⌨️ 快捷键说明

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