本文介绍了如何设置JLabel的背景颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的 JPanel
中,我将 JLabel
的背景设置为其他颜色。我可以看到测试这个词,它是蓝色的,但背景根本不会改变。如何才能显示?
In my JPanel
, I set the background of a JLabel
to a different color. I can see the word "Test" and it's blue, but the background doesn't change at all. How can I get it to show?
this.setBackground(Color.white);
JLabel label = new JLabel("Test");
label.setForeground(Color.blue);
label.setBackground(Color.lightGray);
this.add(label);
推荐答案
使用
label.setOpaque(true);
否则后台未绘制,因为默认值 opaque
false
JLabel
。
Otherwise the background is not painted, since the default of opaque
is false
for JLabel
.
来自 :
有关更多信息,请阅读Java教程。
For more information, read the Java Tutorial How to Use Labels.
这篇关于如何设置JLabel的背景颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!