设置 JWindow 背景图像

发布于 2024-11-09 12:08:48 字数 634 浏览 0 评论 0原文

大家好
我想为我的 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");
    }
}

这行代码创建了一个没有背景图像的全屏窗口。为什么?
我该如何修复它?

Hey All
I want to set a Background for my JWindow. I used setIconImage method in JWindow. but it's not working

How knows what the problem is?

    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");
    }
}

This lines of code makes a Full-screen window with no background image. why?
How can i fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似狗非友 2024-11-16 12:08:48

setIconImage 用于窗口图标,而不是背景。

尝试例如 setBackground。如果您想要一些自定义背景图像,您可能必须重写一些 paint(Graphics g) 方法,或者设置一些内容窗格/添加一些绘制图像的组件。

The setIconImage is for the window icon, not for the background.

Try for instance setBackground. If you want some custom background image, you probably have to either override some paint(Graphics g) method, or set some content pane / add some component that paints the image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文