在Java中設置窗口背景顏色可以使用setBackground()
方法來實現。以下是一個示例代碼:
import javax.swing.*;
import java.awt.*;
public class SetBackgroundColor {
public static void main(String[] args) {
// 創建一個 JFrame 實例
JFrame frame = new JFrame("設置背景顏色");
// 設置窗口大小
frame.setSize(400, 300);
// 設置窗口關閉時的默認操作
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// 設置背景顏色
frame.getContentPane().setBackground(Color.RED);
// 顯示窗口
frame.setVisible(true);
}
}
在上述代碼中,通過調用setBackground()
方法并傳入一個Color
對象,可以設置窗口的背景顏色。在這個例子中,我們設置了背景顏色為紅色。根據需要,可以調整Color
對象的參數來設置不同的顏色。