Java - Japplet无法更改背景颜色

发布于 2024-12-19 03:20:08 字数 611 浏览 0 评论 0原文

我无法更改 JApplet 的背景颜色。它始终是灰色的。我在 NetBeans 工作。有人有什么建议吗?谢谢。

解决方案 感谢Крысa的回答,以下是问题的解决方案:必须使用 getContentPane().setBackground(Color.WHITE);

@Override
public void init() {

    /* Set the Nimbus look and feel */
    //Look and feel setting code (optional)

    /* Create and display the applet */
    try {
        java.awt.EventQueue.invokeAndWait(new Runnable() {

            public void run() {
                getContentPane().setBackground(Color.WHITE);
                initComponents();
            }
        });
    } catch (Exception ex) {}

}

I am unable to change the background color of my JApplet. It is always gray color. I am working in NetBeans. Anyone have any suggestions? Thank you.

Solution Thanks to Крысa's answer the following is the solution to the problem: must use getContentPane().setBackground(Color.WHITE);

@Override
public void init() {

    /* Set the Nimbus look and feel */
    //Look and feel setting code (optional)

    /* Create and display the applet */
    try {
        java.awt.EventQueue.invokeAndWait(new Runnable() {

            public void run() {
                getContentPane().setBackground(Color.WHITE);
                initComponents();
            }
        });
    } catch (Exception ex) {}

}

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

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

发布评论

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

评论(1

似狗非友 2024-12-26 03:20:08

您需要设置JApplet内容窗格的背景。

You need to set the background of the JApplet's content pane.

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