Questions tagged «jlabel»

4
如何设置JLabel的背景颜色?
在我的中JPanel,我将的背景设置JLabel为其他颜色。我可以看到单词“ Test”,它是蓝色的,但是背景完全没有变化。如何显示? this.setBackground(Color.white); JLabel label = new JLabel("Test"); label.setForeground(Color.blue); label.setBackground(Color.lightGray); this.add(label);
149 java  swing  jlabel 

6
JLabel中的换行符
如何在中显示换行符JLabel? 例如,如果我想要: 你好,世界! 等等等等等等 这就是我现在所拥有的: JLabel l = new JLabel("Hello World!\nblahblahblah", SwingConstants.CENTER); 这是显示的内容: 你好世界! 如果这是一个愚蠢的问题,请原谅我,我只是在学习一些Swing基础知识...




By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.