返回列表 發帖

Color 類別

試使用 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));

istak.teach2@gmail.com

此帖僅作者可見
istak.teach2@gmail.com

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表