我有一个带有 BorderLayout 的 JFrame 类,它包含另一个扩展 JPanel 的类(ScorePanel)。这是 JFrame 类的相关代码,该方法不是由设置 ScorePanel 的构造函数调用的。gPanel 是主要的游戏面板,但不要担心。:
public void initialize() { //called by controller at the end
if (Controller.DEBUG) System.out.println("View initialized");
JPanel scores = new JPanel();
scores.setSize(1000,200);
scores.setBackground(Color.BLACK);
ScorePanel score1 = new ScorePanel("Volume", 1);
ScorePanel score2 = new ScorePanel("Pitch", 2);
scores.add(score1); scores.add(score2);
scores.setVisible(true);
scores.validate();
this.add(scores, BorderLayout.SOUTH);
this.add(gpanel, BorderLayout.CENTER); //main game panel
this.validate();
this.setVisible(true);
this.repaint();
}
这是ScorePanel的相关代码:
private int score; //this current score
private String name; //this name
private int player; //this player
public ScorePanel(String n, int p){ //a JPanel that shows the player's name and score
super();
name = n;
score = 0;
player = p;
setBackground(Color.WHITE);
setSize(450,150);
setVisible(true);
}
我之前已经想通了,但我不记得该怎么做了。当我运行它时会发生什么,我看到一些白色方块应该是大的 ScorePanels。
这是一个屏幕截图。我希望我的问题和代码很清楚。