我想控制按钮的大小,我使用方法 setBounds 但是没有变化
这是我的代码

       public class levels extends JFrame implements ActionListener{

 //Variables
private static JLabel chooseLevel;
private static JButton easyPuzzle;
private static JButton mediumPuzzle;
private static JButton hardPuzzle;
 // End Of Variables

这个主要的鳕鱼
public static void main(String[]args){

levels level = new levels();
level.setBounds(400, 190, 450, 450);
level.setVisible(true); // frame is visible
level.setResizable(false); // not Resizable frame
level.setTitle("Puzzle Number : New Game");  // Title Of the frame

添加组件的容器
   Container cN = level.getContentPane(); //  Container to add components for farme 1
   GridLayout gN = new GridLayout(0,1,10,20); //object from GridLayout
   cN.setLayout(gN);

   levels.chooseLevel = new JLabel("              Choose a level :");
   levels.easyPuzzle = new JButton("Easy puzzle from ( 1 - to -15)");
   levels.mediumPuzzle = new JButton("Medium Puzzle from (1- to- 29)");
   levels.hardPuzzle = new JButton("Hard Puzzle from (1- to- 59)");


     cN.add(chooseLevel);
     cN.add(easyPuzzle);
     cN.add(mediumPuzzle);
     cN.add(hardPuzzle);
   }
   }
   }

最佳答案

LayoutManager 多次覆盖您设置的边界,GridLayout 就是这种情况。

我建议你通过 layout managers tutorial

关于java - java中按钮的大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10502830/

10-10 17:23