使用多种不同字体渲染 JTree 中的节点
想象一下,我有一个显示多个字符串的 JTree - 例如颜色列表。如何用不同的颜色/字体组合渲染这样一棵树?如何正确实现TreeCellRenderer?
谢谢你的帮助。
Imagine I have a JTree that is showing multiple strings - for example a list of colors. How it would be possible to render such a tree with different color/font combination? How to implement TreeCellRenderer correctly?
Thank you for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以扩展 DefaultTreeCellRenderer。在 getTreeCellRendererComponent 方法中,您调用 super() 并检查条件,例如通过分析值。之后相应地调用 setFont()、setBackground() 和 setForeground() 方法。
You can extend DefaultTreeCellRenderer. In the getTreeCellRendererComponent method you call super() and check you conditions e.g. by analysing value. After that call setFont(), setBackground() and setForeground() methods accordingly.
另一种可能的方法是创建一个实现 TreeCellRenderer 的内部类。然后您所要做的就是按照您想要的方式自定义 JLabel。
取自此网站。
Another possible way is to make an inner class that implements TreeCellRenderer. All you have to do then is customize the JLabel the way you want.
taken from this site.