2012-05-07 22 views
0

JPanelで一連のボタンを表示しようとしています。これらのボタンのそれぞれは、私のSudoku Board Valuesに関連付けられた値の1つです。私は私のボードを作成してメニューを追加しましたが、今はメニューの下の選択可能なオプションを同じJframeでボードの前に表示しようとしています。私はすべてのボタンをJPanelに置き、そのパネルをフレームに置くことができればと思っていました。 JPanelは表示されますが、ボタンは表示されません。私は一度にパネルを表示しましたが、どれもサイズが決められておらず、多くの人がいました。私がより具体的にしなければならない問題は、一連のボタンである私のSudoku Boardを含むFrameに置かれている私のJPanelに一連のボタンを表示するのに正しいコードを使用していることです。JPanelボタンが表示されない

この最終的なツールバーとボタンは、この1つの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); 
     } 
    } 
}; 

答えて

3

私はツールバーでそれを見えるようにし、またテストのためだけに背景を赤に設定し、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); 
     } 
    } 
}; 

私も下の全テストコードを掲示しています:Iラインthis.add(new ToolBar());ため

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); 
      } 
     } 
    }; 
} 

ルックJFrameをインスタンシエートして、JFrameに追加します。

アドバイスの作品:できるだけ多くの

避けAWTコンポーネント

2

setPreferredSizeまたはsetBoundsを使用しないでください。 LayoutManagerがあなたの位置と寸法を処理できるようにします。

必要に応じて、独自に実装する代わりにJToolBarを使用することを検討してください。

関連する問題