0

BackgroundPanel という名前の背景として使用する JPanel があります。そして、NetBeans を使用してメインの JFrame を設計し、そのような BackgroundPanel を追加しています。

public class Main extends javax.swing.JFrame {
    Image img = null;
    public Main() {
        initComponents();
        setTitle("Count To");
        setPreferredSize(new Dimension(800, 600));
        Image img = null;
        try {
        img = ImageIO.read(new File("resources/bg.png"));
        } catch (IOException e) {System.out.println("Image can't found.");}

        BackgroundPanel bgPanel = new BackgroundPanel(img, BackgroundPanel.SCALED, 0.0f, 0.0f);

        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        getContentPane().add(bgPanel);
        pack();
        setVisible(true);
        //setResizable(false);
        setLocationRelativeTo(null);
    }

    /**
     * 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.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
        setForeground(java.awt.Color.red);
        setIconImage(getIconImage());

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 400, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 300, Short.MAX_VALUE)
        );

        pack();
    }// </editor-fold>                        

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new Main().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify                     
    // End of variables declaration                   
}

しかし、私の BackgroundPanel は表示されません。つまり、フレームの背景画像はありませんが、プレーングレー (デフォルト) です。

私の説明が明確だったことを願っています。必要に応じて、BackgroundPanel クラスも含めることができます。

4

1 に答える 1

2

すべての最上位コンテナ (およびJInternalFrame) には、「ルート ペイン」と呼ばれるものがあります。これは、ウィンドウの主要なレイアウトを実際に構築する役割を果たします。

ルート ペインは、(基本的に) コンテンツ ペインとガラス (およびオプション メニュー バー) で構成され、ウィンドウの上にあります。

ここに画像の説明を入力

コンポーネントをウィンドウに追加すると、実際にはコンテンツ ペインに追加されます。

あなたの場合、コンテンツ ペインを既存のパネルに追加するのではなく、単に独自のパネルに置き換えるのが理にかなっています。

このようにして、新しいコンポーネントをウィンドウに追加すると、実際にはBackgroundPane代わりに に追加されます。

ただし、コンポーネントをウィンドウに追加する前に、コンテンツ ペインを変更してください ;)

詳細については、ルート ペインの使用方法を参照してください。

于 2013-05-20T00:07:16.297 に答える