我正在创建一个小的Game of Life应用程序。我正在为所有单元格使用“动态宇宙”(在我的项目中命名为Tiles)。但是由于某些原因,我的JScrollPaneJButtons没有渲染到框架中。我只是得到一个空的JFrame。控制器正在返回值,并且正在构造按钮并将其添加到面板。只是jsp.setViewportView(p);似乎没有更新UI。

主要:

GOLController controller = new GOLController();
controller.run();
SwingUtilities.invokeLater(() -> {
    GameOfLifeFrame frame = new GameOfLifeFrame(controller);
    frame.init();
});


UI类:

package org.gameoflife.ui;

import java.awt.Color;
import java.awt.GridLayout;
import java.awt.HeadlessException;
import java.util.List;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import org.gameoflife.controller.GOLController;
import org.gameoflife.model.Tile;

public class GameOfLifeFrame extends JFrame {

    private final GOLController controller;
    private JScrollPane jsp;

    public GameOfLifeFrame(GOLController controller) throws HeadlessException {
        super("Game of Life");
        this.controller = controller;
    }


    public void init() {
        jsp = new JScrollPane();
        add(jsp);

        setLocationRelativeTo(null);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setExtendedState(JFrame.MAXIMIZED_BOTH);
        setVisible(true);

        controller.setLock();
        this.draw();
        controller.releaseLock();
    }

    public void draw(){
        List<List<Tile>> currentState = controller.getTiles();
        GridLayout layout = new GridLayout(currentState.size(), currentState.get(0).size());

        JPanel p = new JPanel(layout);
        currentState.stream().forEach((currentTiles) -> {
            currentTiles.stream().map((t) -> {
            JButton b=new JButton(" ");
            b.setBackground(t.isHasLife() ? Color.GREEN : Color.BLACK);
            return b;
            }).forEach((b) -> {
                p.add(b);
            });
        });
        jsp.removeAll();
        jsp.setViewportView(p);
    }

}


我可能忽略了一些非常愚蠢的东西,感谢您的帮助。

最佳答案

这:jsp.removeAll()将会有问题,因为它可能会删除视口和JScrollBar,因此也不是必需的,因为设置viewportView仍会执行相同的操作

请记住,JScrollPane是特殊组件,由一个JViewPort和两个JScrollBar组成,实际内容位于JViewport而不是JScrollPane

java - JScrollPane-内容和滚动条不呈现-LMLPHP

10-07 16:15
查看更多