JLabel设置背景色
程序员文章站
2022-07-13 12:57:51
...
由于 Jlabel 默认是透明的,所以直接通过setBackground(color)设置背景色是看不到效果的,如果想看到效果,需要首先设置该JLabel不透明,就可以了。
JLabel tips = new JLabel("正在执行,请稍后...");
tips.setOpaque(true);//设置组件JLabel不透明,只有设置为不透明,设置背景色才有效
tips.setBackground(ColorUtil.LU_DOU_SHA);
注:opaque [o'pek] 中文意思:不透明的
上一篇: UICollectionView 设置section的背景色
下一篇: css:背景色设置