1

我的代码有问题,我对 java 编程很陌生,但问题是我想设置一张背景图片,但我使用的代码使我放入 JFrame 中的所有其他内容都消失了。

panel.setSize(950, 600);
panel.setTitle("Nuevo Usuario Otto's");
panel.setResizable(false);
panel.setLocationRelativeTo(null);
try {
    panel.setContentPane(new JLabel(new ImageIcon(ImageIO.read(new File("C:\\CELLES_PROYECTO\\darkTrees.jpg")))));
} catch (IOException e) {

    e.printStackTrace();
}
panel.setResizable(false);
panel.pack();
panel.setVisible(true);
4

1 回答 1

0

JLabel 不支持子组件。相反,对内容窗格使用 JPanel,并覆盖其 paintComponent 方法来绘制图像。

try {
    final Image backgroundImage = ImageIO.read(new File("C:\\CELLES_PROYECTO\\darkTrees.jpg"));
    setContentPane(new JPanel(new BorderLayout()) {
        @Override public void paintComponent(Graphics g) {
            g.drawImage(backgroundImage, 0, 0, null);
        }
    });
} catch (IOException e) {
    throw new RuntimeException(e);
}

上面的示例还将 JPanel 的布局设置为 BorderLayout,以匹配默认的内容窗格布局。

于 2013-10-31T18:03:37.790 回答