问题描述
java图形界面一个窗口切换到另一窗口的时候,窗口的背景图不见了,何解呢?每个窗口单独运行的时候是没有问题的,一通过其他窗口开启显示就有问题。我插入背景的方法是:ImageIconimg1=newImageIcon(MusicShareClient.class.getResource("Image/Login.jpg"));JLabelbg=newJLabel(img1);inst.setLayout(null);inst.getLayeredPane().add(bg,-3000);bg.setBounds(0,-20,img1.getIconWidth(),img1.getIconHeight());((JPanel)inst.getContentPane()).setOpaque(false);是不是上面的方法有问题
时间: 2024-12-19 17:57:07