gpt4 book ai didi

java - 面板的背景颜色

转载 作者:行者123 更新时间:2023-12-02 01:33:05 25 4
gpt4 key购买 nike

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package foodmeterproject;

import java.awt.Color;

/**
*
* @author al-sany
*/
public class FoodMeterProject {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
FirstFrame frame=new FirstFrame();

frame.setVisible(true);
frame.setBackground(Color.green);
}

}

我想更改我的程序背景。有一个JPanel。我想给它的背景上色。我用frame.setBackground(Color.green) ,但不能改变背景。你们能帮帮我吗?提前致谢。

最佳答案

试试这个

frame.getContentPane().setBackground(Color.GREEN);

关于java - 面板的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55730291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com