現在,我得到的背景是灰色的。我想把它改成黑色。我試着做一些像setBackground(color.BLACK);但它沒有工作。有什麼建議麼?如何更改Java面板上的背景顏色?
public test()
{
setTitle("Adjustment Form");
setSize(670,450);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLocationRelativeTo(null);
setLayout(new GridLayout(4,6,2,2));
setVisible(true);
}
我繼續,並做了getContentPane方法,它的工作。 – razshan 2010-11-18 22:08:47