Java - Applet无法更改背景颜色

时间:2011-12-02 14:11:41

标签: java netbeans japplet

我无法更改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) {}

}

1 个答案:

答案 0 :(得分:1)

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