Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个使用边框布局和 JPanel 使用 BorderLayout.CENTER 的游戏。我想做的有时是隐藏这个面板并用另一个具有不同信息的面板替换它。我将两者都添加到容器中,并将其中一个的可见性设置为 false。
然后我尝试:
panel1.setVisible(false); panel2.setVisible(true);
但这不会显示新面板。我只看到灰色。有任何想法吗?
TIA
为此,请使用带有CardLayout的嵌套 JPanel 。