我无法同时显示两个不同的组件。
public class BandViewer
{
public static void main(String[] args)
{
JFrame frame = new JFrame();
frame.setSize(1000, 800);
frame.setTitle("band");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
BandComponent component = new BandComponent();
ConcertBackground component1 = new ConcertBackground();
frame.add(component);
frame.add(component1);
frame.setVisible(true);
}
}
现在我在这个论坛上读到,您可以做一些事情来同时显示两者,但无法弄清楚它是如何完成的。有人可以帮忙吗?我想让一个在另一个前面。他们有什么方法可以控制分层吗?提前致谢。