我正在尝试制作一个由9x9 JButton制作的简单的tic tac toe board。 我使用了二维数组和一个gridlayout,但结果是什么,没有任何按钮的框架。 我做错了什么?
import java.awt.GridLayout;
import javax.swing.*;
public class Main extends JFrame
{
private JPanel panel;
private JButton[][]buttons;
private final int SIZE = 9;
private GridLayout experimentLayout;
public Main()
{
super("Tic Tac Toe");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(500,500);
setResizable(false);
setLocationRelativeTo(null);
experimentLayout = new GridLayout(SIZE,SIZE);
panel = new JPanel();
panel.setLayout(experimentLayout);
buttons = new JButton[SIZE][SIZE];
addButtons();
add(panel);
setVisible(true);
}
public void addButtons()
{
for(int k=0;k<SIZE;k++)
for(int j=0;j<SIZE;j++)
{
buttons[k][j] = new JButton(k+1+", "+(j+1));
experimentLayout.addLayoutComponent("testName", buttons[k][j]);
}
}
public static void main(String[] args)
{
new Main();
}
}
addButton方法是将按钮添加到数组中,然后直接添加到面板中。
答案 0 :(得分:8)
您需要将按钮添加到JPanel
:
public void addButtons(JPanel panel) {
for (int k = 0; k < SIZE; k++) {
for (int j = 0; j < SIZE; j++) {
buttons[k][j] = new JButton(k + 1 + ", " + (j + 1));
panel.add(buttons[k][j]);
}
}
}
答案 1 :(得分:4)
// add buttons to the panel INSTEAD of the layout
// experimentLayout.addLayoutComponent("testName", buttons[k][j]);
panel.add(buttons[k][j]);
进一步的建议:
JFrame
,只要根据需要保留对它的引用。仅在添加或更改功能时扩展框架.. setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
使用setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
,而不是this answer。setSize(500,500);
使用panel.setPreferredSize(new Dimension(500,500));
。或者更好的是,扩展JButton
以使SquareButton
返回优先大小等于宽度或高度的最大首选项。最后一个将确保GUI是它需要的大小,square&amp;允许足够的空间来显示文字。setLocationRelativeTo(null);
使用setLocationByPlatform(true);
,如第2点中链接的答案所示。pack()
之前添加setVisible(true);
,以确保GUI的大小,以显示内容。setResizable(false)
来电setMinimumSize(getSize())
。