0
我無法更改JApplet的背景顏色。它始終是灰色的。我在NetBeans中工作。任何人有任何建議?謝謝。Java - Japplet無法更改背景顏色
解決方案感謝Крыс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) {}
}
我們可以看到代碼嗎? – SJuan76