的JPanel的setBackground(Color.BLACK)什么都不做 [英] JPanel setBackground(Color.BLACK) does nothing

查看:1108
本文介绍了的JPanel的setBackground(Color.BLACK)什么都不做的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有如下因素定制的JPanel,我已经使用NetBeans GUI构建它交锋到我的框架,但背景不会改变!我可以看到的圈子,与g.fillOval图()。怎么了?

 公共类主板继承JPanel {    私人Player播放器;    公板(){
        setOpaque(假);
        的setBackground(Color.BLACK);
    }    公共无效的paintComponent(图形G){
        super.paintComponent方法(G);
        g.setColor(Color.red);
        g.fillOval(player.getxCenter(),player.getyCenter(),player.getRadius(),player.getRadius());
    }    公共无效updatePlayer(Player播放器){
        this.player =玩家;
    }
}


解决方案

如果您的面板不透明(透明),你不会看到你的背景颜色。

I have the folowing custom JPanel and I have aded it to my frame using Netbeans GUI builder but the background won't change! I can see the circle, drawing with g.fillOval(). What's wrong?

public class Board extends JPanel{

    private Player player;

    public Board(){
        setOpaque(false);
        setBackground(Color.BLACK);  
    }

    public void paintComponent(Graphics g){  
        super.paintComponent(g);
        g.setColor(Color.red);
        g.fillOval(player.getxCenter(), player.getyCenter(), player.getRadius(), player.getRadius());
    }

    public void updatePlayer(Player player){
        this.player=player;
    }
}

解决方案

If your panel is 'not opaque' (transparent) you wont see your background color.

这篇关于的JPanel的setBackground(Color.BLACK)什么都不做的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆