Scala 中的多行标签
简短的问题,希望简单的解决方案:
我有自己的 ListView
渲染器,没有什么太奇特的,它只是连接 Label
和 Icon
>。我的问题是,到目前为止,标签忽略了我的“\n”。我怎样才能改变这一点?我想用两行来展示我提供的信息。
感谢您的聆听。
Short question, hopefully simple solution:
I've got my own renderer for a ListView
, nothing too fancy, it just connects a Label
and and Icon
. My questions is, so far, the Label ignores my "\n"s. How can I change that? I'd like to have two lines for the information I present.
Thanks for listening.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 html 作为标签。像这样:
new JLabel("第 1 行
第 2 行");
Use html for your Label. Like this:
new JLabel("<html>line 1<br>line 2</html>");
使用 \n 不起作用,但
abc
可以。def
Using \n doesn't work, but
<html>abc<br>def</html>
does.