任务:从面板中删除多个控件,然后添加新的。

问题:完成几种方法后,旧的控件消失了,但是我看不到新的控件。

码:

    public void StartGame() {
    ActionPanel.removeAll();
    CreateOponentField();
    ActionPanel.repaint();

}
    private void CreateOponentField() {
    ActionPanel.setLayout(new java.awt.GridLayout(10, 10));
    for (int i = 0; i < 10; i++) {
        for (int j = 0; j < 10; j++) {
            LabelArray[i][j] = new JLabel();
            LabelArray[i][j].setOpaque(true);
            LabelArray[i][j].setBackground(BattleShipEnumClass.ColorMap.get(GridCellState.EMPTY));
            LabelArray[i][j].setBorder(new LineBorder(Color.BLACK));

            ActionPanel.add(LabelArray[i][j]);


}}}

有人可以知道问题/错误在哪里吗?

最佳答案

如果ActionPanelJComponent的实例,则可以使用:

ActionPanel.revalidate();


除此以外

ActionPanel.invalidate();
ActionPanel.validate();

09-11 18:39