JLabel设置背景色

阅读更多

由于 Jlabel 默认是透明的,所以直接通过setBackground(color)设置背景色是看不到效果的,如果想看到效果,需要首先设置该JLabel不透明,就可以了。

 

 

JLabel tips = new JLabel("正在执行,请稍后...");
tips.setOpaque(true);//设置组件JLabel不透明,只有设置为不透明,设置背景色才有效
tips.setBackground(ColorUtil.LU_DOU_SHA);

 

 注:opaque [o'pek]  中文意思:不透明的

 

http://huangqiqing123.iteye.com/blog/1678208

你可能感兴趣的:(JLabel,背景色)