转载自:http://huangqiqing123.iteye.com/blog/1678208
由于 Jlabel 默认是透明的,所以直接通过setBackground(color)设置背景色是看不到效果的,如果想看到效果,需要首先设置该JLabel不透明,就可以了。
- JLabel tips = new JLabel("正在执行,请稍后...");
- tips.setOpaque(true);//设置组件JLabel不透明,只有设置为不透明,设置背景色才有效
- tips.setBackground(ColorUtil.LU_DOU_SHA);