0

JPanelに一連のボタンを表示させようとしています。これらの各ボタンには、数独ボードの値に関連付けられている値の1つがあります。ボードにメニューを追加して作成しましたが、メニューの下で、ボードの前にある同じJframeで選択可能なオプションを表示しようとしています。すべてのボタンをJPanelに配置し、そのパネルをフレームに配置できることを望んでいました。JPanelは表示されますが、ボタンは表示されません。かつて私はパネルを展示するようになりましたが、どれもサイズがなく、たくさんありました。もっと具体的に言う必要があるのは、JPanelに一連のボタンを表示するために正しく使用しているコードです。これは、一連のボタンでもある数独ボードを含むフレームに配置されています。

この最後のツールバーとボタンは、この単一のJFrameにとって非常に重要ですか、それが機能しない理由ですか?とにかくここに私のJPanelである私のツールバーのコードがあります。

class ToolBar extends JPanel {
    // instance initializer (constructor equivalent)

    public ToolBar() {
        super();
        this.setLayout(myLayout);

        myLayout.setAlignment(FlowLayout.TRAILING);
        Button[] panelButton = new Button[size];

        //Rectangle rec = new Rectangle(330,45,BUTTON, BUTTON);
        //setBounds(rec);
        setPreferredSize(new Dimension(330, 45));

        for(int i = 0; i < size; i++) {
            Rectangle r = new Rectangle(12, 12, 22, 22);
            center = new ImageIcon(view.drawSymbol(i));

            panelButton[i]= new Button();
            panelButton[i].setIcon(center);
            panelButton[i].setOpaque(true);
            panelButton[i].setBorder(BorderFactory.createLineBorder(Color.black));
            panelButton[i].setBounds(r);

            this.add(panelButton[i]);
            this.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
            this.setVisible(true);
        }
    }
};
4

2 に答える 2

4

ツールバーを使用setBoundsして表示し、テストのために背景を赤に設定し、AWTボタンをSwing JButtonに置き換え、ボタンにテキストを設定しました。コンパイルするためにテストコードにコメントを付けましたが、以下に戻します。

class ToolBar extends JPanel {
    // instance initializer (constructor equivalent)

    public ToolBar() {
        super();
        this.setLayout(myLayout);

        myLayout.setAlignment(FlowLayout.TRAILING);
        JButton[] panelButton = new JButton[5];
        this.setBackground(Color.red);
        this.setBounds(0, 0, 200, 200);

        //Rectangle rec = new Rectangle(330,45,BUTTON, BUTTON);
        //setBounds(rec);
        setPreferredSize(new Dimension(330, 45));

        for (int i = 0; i < 5; i++) {
            Rectangle r = new Rectangle(22, 22);                
            panelButton[i] = new JButton();
            panelButton[i].setText("       ");
            panelButton[i].setIcon(new ImageIcon(view.drawSymbol(i)));
            panelButton[i].setOpaque(true);
            panelButton[i].setBorder(BorderFactory.createLineBorder(Color.black));
            panelButton[i].setBounds(r);
            this.add(panelButton[i]);
            this.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
            this.setVisible(true);
        }
    }
};

また、以下にテストコード全体を投稿しています。

import java.awt.Color;
import java.awt.ComponentOrientation;
import java.awt.Dimension;
import java.awt.Rectangle;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JPanel;

/*
 * To change this template, choose Tools | Templates and open the template in
 * the editor.
 */
/**
 *
 * @author hahahaha
 */
public class NewJFrame extends javax.swing.JFrame {

    /**
     * Creates new form NewJFrame
     */
    public NewJFrame() {
        initComponents();
        this.add(new ToolBar());
    }

    /**
     * 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);

        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(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(NewJFrame.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 NewJFrame().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify
    // End of variables declaration
    class ToolBar extends JPanel {
        // instance initializer (constructor equivalent)

        public ToolBar() {
            super();
            //this.setLayout(myLayout);

            //myLayout.setAlignment(FlowLayout.TRAILING);
            JButton[] panelButton = new JButton[5];
            this.setBackground(Color.red);
            this.setBounds(0, 0, 200, 200);

            //Rectangle rec = new Rectangle(330,45,BUTTON, BUTTON);
            //setBounds(rec);
            setPreferredSize(new Dimension(330, 45));

            for (int i = 0; i < 5; i++) {
                Rectangle r = new Rectangle(22, 22);
                //center = new ImageIcon(view.drawSymbol(i));
                panelButton[i] = new JButton();
                panelButton[i].setText("       ");
                //panelButton[i].setIcon(center);
                panelButton[i].setOpaque(true);
                panelButton[i].setBorder(BorderFactory.createLineBorder(Color.black));
                panelButton[i].setBounds(r);
                this.add(panelButton[i]);
                this.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
                this.setVisible(true);
            }
        }
    };
}

インスタンス化する行を探して、this.add(new ToolBar());ツールバーをJFrameに追加します。

アドバイス:

AWTコンポーネントはできるだけ避けてください

于 2012-05-07T20:35:15.437 に答える
2

setPreferredSize または setBounds を使用しないでください。LayoutManager に位置と寸法を処理させます。

必要に応じて、独自の実装ではなく JToolBar の使用を検討することもできます。

于 2012-05-07T20:27:36.683 に答える