框架的背景图像覆盖组件

时间:2016-11-08 12:31:09

标签: java image swing jframe

我遇到了JFrame的问题,当我在框架中添加背景图像时,所有其他组件都隐藏在图像下方,但我希望以相反的方式使用它,一切都在顶部图像(JButtonJPasswordField等)

感谢您的努力和时间。

    setUndecorated(true);
    sestSize(new Dimension(width, height));
    window.setLayout(null);
    setLocationRelativeTo(null);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setTitle("MyFrame\u2122");
    getContentPane().add(window);
    setResizable(false);
    setContentPane(new JLabel(new ImageIcon("C:/Users/path/to/some/image/Image.jpg")));

0 个答案:

没有答案