本帖最後由 tonyh 於 2020-9-14 19:50 編輯
試使用 setBackground() 方法為元件(或容器)設定背景顏色,
以及 setForeground() 方法為元件(或容器)設定前景顏色(即文字的顏色)。
P.S. 背景色僅在元件是不透明時才可使用,因此部分元件或容器無法設定背景色,譬如 JLabel 及 JFrame 就無法 setBackground()。
個元件之顏色參考設定:
btn[0].setBackground(Color.BLUE);
btn[0].setForeground(Color.YELLOW);
btn[1].setBackground(Color.RED);
btn[1].setForeground(Color.WHITE);
btn[2].setBackground(Color.DARK_GRAY);
btn[2].setForeground(Color.GREEN);
btn[3].setBackground(Color.PINK);
btn[3].setForeground(Color.BLUE);
pn1.setBackground(Color.CYAN);
pn2.setBackground(new Color(190,255,0));
本帖隱藏的內容需要回復才可以瀏覽 |