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) {}
}
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置
JApplet
的内容窗格的背景。You need to set the background of the
JApplet
's content pane.