Java - 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) {}

}

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

相关内容

  • 没有找到相关文章

最新更新