我试图创造所谓的" 15游戏" ,就像一个带有16个按钮的幻灯片拼图,其中15个带有数字1-15和一个空按钮。单击空白旁边的按钮将使用单击的按钮和空按钮切换位置。 BUt现在我正在尝试设置gui,它是用Swing,gridlayout和16个按钮制作的。我不能让它工作,这是我的代码:
package game;
import java.awt.GridLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenuBar;
import javax.swing.JPanel;
public class TheGame{
public static void main(String[] args){
TheGame game = new TheGame();
}
public TheGame(){
JMenuBar menubar = new JMenuBar();
JFrame frame = new JFrame("15Game");
GridLayout grid = new GridLayout(4,4,3,3);
JPanel panel = new JPanel();
Cell cell1 = new Cell("1");
Cell cell2 = new Cell("2");
Cell cell3 = new Cell("3");
Cell cell4 = new Cell("4");
Cell cell5 = new Cell("5");
Cell cell6 = new Cell("6");
Cell cell7 = new Cell("7");
Cell cell8 = new Cell("8");
Cell cell9 = new Cell("9");
Cell cell10 = new Cell("10");
Cell cell11 = new Cell("11");
Cell cell12 = new Cell("12");
Cell cell13 = new Cell("13");
Cell cell14 = new Cell("14");
Cell cell15 = new Cell("15");
Cell cellEmpty = new Cell("");
panel.add(cell1);
panel.add(cell2);
panel.add(cell3);
panel.add(cell4);
panel.add(cell5);
panel.add(cell6);
panel.add(cell7);
panel.add(cell8);
panel.add(cell9);
panel.add(cell10);
panel.add(cell11);
panel.add(cell12);
panel.add(cell13);
panel.add(cell14);
panel.add(cell15);
panel.add(cellEmpty);
panel.setLayout(grid);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
}
这是Cell:
package game;
import javax.swing.JButton;
public class Cell extends JButton {
//Variables
public Cell(String s){
this.setText(s);
}
当我创建它时,它只会弹出一个小的空gui窗口,根本没有按钮。为什么这样,我做错了什么?
答案 0 :(得分:1)
您需要将包含按钮的面板添加到框架
frame.add(panel);