运行此代码时,控件按钮显示在顶部。我想改变按钮的大小和按钮的位置。我尝试使用setBounds()
方法,但它并没有改变任何内容。
import javax.swing.*;
import java.awt.*;
public class GameFrame
{
public JFrame gameframe;
public JPanel panel;
public JButton b1;
public JLabel lab;
public GameFrame()
{
gui();
}
public void gui()
{
gameframe = new JFrame("Poop MAN");
gameframe.setVisible(true);
gameframe.setSize(800, 900);
gameframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
panel = new JPanel();
panel.setBackground(Color.yellow);
b1 = new JButton("CONTROLS");
b1.setBounds( 300,70,590,300);
//b1.setSize(new Rectan
panel.add(b1);
gameframe.add(panel);
}
public static void main(String[] args)
{
new GameFrame();
}
}