因此,我试图制作一个可以延伸整个程序的面板,并且具有大约20像素的高度。由于某种原因,只有一个小盒子是面板。任何人都可以告诉我它为什么不伸展到整个宽度?我对Java很新,所以如果代码有点混乱/错误,请对不起。
public GridPane() {
gbc = new GridBagConstraints();
gbc.anchor = GridBagConstraints.NORTH;
gbc.weighty = 1.0;
horizontalGrid = new JButton();
horizontalGrid.setText("Horizontal Grid");
options = new JPanel(new BorderLayout());
options.setBackground(Color.black);
options.add(horizontalGrid);
add(options, gbc);
}
public class Game extends JPanel implements ActionListener{
//DECLARATIONS
private static final long serialVersionUID = 1L;
public GridPane grid = new GridPane();
//DECLARATIONS END
//CONSTRUCTOR
public Game() {
this.add(grid);
}
//CONSTRUCTOR ENDS
//MAIN METHOD
public static void main(String[] args) {
JFrame frame = new JFrame();
Game game = new Game();
frame.setResizable(true);
frame.setAlwaysOnTop(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(game);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
//MAIN METHOD ENDS
//ACTION METHOD
public void actionPerformed(ActionEvent e) {
}
答案 0 :(得分:0)
我修好了!!事实证明,我们需要使用以下代码替换GridPane构造函数:
setBackground(Color.black);
add(horizontalGrid);
我不确定为什么,但它确实有效。