WindowBuilder中的多行文字标签?

时间:2014-06-23 16:20:37

标签: java windowbuilder

是否可以在WindowBuilder中创建多行标签?

以下方法失败:

1)JLabel与\n - s

2)JLabel包含文本,包装为<html>maximuSize设置

3)JTextPane with with withot <html>

为什么???

1 个答案:

答案 0 :(得分:2)

如果要在JLabel中显示多行文本,请使用以下html标记:

JLabel label = new JLabel("<html>First line and maybe second line</html>");

如果您希望能够控制换行符,请使用标准的html
标签:

JLabel label = new JLabel("<html>First line<br>Second line</html>");