Hey All
我想为我的JWindow设置一个背景。我在JWindow中使用了setIconImage方法。但不起作用
怎么知道问题出在哪里?
public MainMenu() throws Exception {
try {
bg = ImageIO.read(new File("pics" + File.separator
+ "mainMenuBackground.jpg"));
content = new JWindow(this);
content.setIconImage(bg);
gs.setFullScreenWindow(content);
content.repaint();
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.repaint();
} catch (Exception e) {
throw new Exception("Some files are unavailable");
}
}
这几行代码创建了一个没有背景图像的全屏窗口。为什么
我该怎么修?
setIconImage
用于窗口图标,而非背景。
例如setBackground
。如果你想要一些自定义的背景图像,你可能需要覆盖一些paint(Graphics g)
方法,或者设置一些内容窗格/添加一些绘制图像的组件。