2017-08-26 5 views
1

Ich verstehe wirklich nicht, warum Button Größe in JLabelbackgroundBoxLayout mit amico.setPreferredSize(new Dimension(320, 240)); nicht erhöht, was ist das Problem? DankeButton Größe ändert sich nicht

Code:

public class JavaApplication30 extends JFrame 
{ 
    private final JButton amico; 
    private final JButton bello; 
    private final JButton compagno; 

    public JavaApplication30(File imageFile) 
    { 
     JLabel background = new JLabel(new ImageIcon(imageFile.getAbsolutePath())); 
     add(background); 
     background.setLayout(new BoxLayout(background, BoxLayout.Y_AXIS)); 
     amico=new JButton("Amico"); 
     amico.setPreferredSize(new Dimension(320, 240)); 
     bello=new JButton("Bello"); 
     compagno=new JButton("Compagno"); 
     background.add(Box.createRigidArea(new Dimension(0,100))); 
     background.add(amico); 
     background.add(Box.createRigidArea(new Dimension(0,30))); 
     background.add(bello); 
     background.add(Box.createRigidArea(new Dimension(0,30))); 
     background.add(compagno); 

     setTitle("Prova"); 
     pack(); 
     setLocationRelativeTo(null); 
     setDefaultCloseOperation(EXIT_ON_CLOSE); 
    } 

    public static void main(String[] args) throws IOException 
    { 
     SwingUtilities.invokeLater(new Runnable() 
     { 
      @Override 
      public void run() 
      { 
       String filepath = "C:\\Users\\user\\Documents\\NetBeansProjects\\JavaApplication29\\src\\eila.jpg"; 
       File imageFile = new File(filepath); 
       JavaApplication30 frame = new JavaApplication30(imageFile); 
       frame.setVisible(true); 
      } 
     }); 
    } 
} 
+1

* amico.setPreferredSize (neue Dimension (320, 240)); "erhöht nicht, was ist das Problem * welcher Fehler erhalten Sie? – nullpointer

+0

@nullpointer keine Fehler, BUILD ERFOLGREICH – carelli99

Antwort

0

Könnten Sie versuchen, folgendes zu tun:

amico = new JButton("Amico") { 
    { 
      setSize(new Dimension(320, 240)); 
      setMaximumSize(getSize()); 
    } 
}; 

Es sollte helfen. Viel Glück.

Verwandte Themen