我遇到了JFrame
的问题,当我在框架中添加背景图像时,所有其他组件都隐藏在图像下方,但我希望以相反的方式使用它,一切都在顶部图像(JButton
,JPasswordField
等)
感谢您的努力和时间。
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")));