根据深度级别更改JTree节点图标
我正在寻找更改我的 JTree (Swing) 的不同图标
java 文档解释了如何更改节点是否为叶子的图标,但这实际上不是我要搜索的内容。
对我来说,节点是否是叶子并不重要,或者,如果节点位于三个深度级别中的第一/第二/第三深度级别,我只想更改图标。
I'm looking for changing the different icons of my JTree (Swing)
The java documentation explains how to change icons if a node is a leaf or not, but that's really not what I'm searching.
For me it doesn't matter if a node is a leaf or, I just want to change the icons if the node is in the first/2nd/3rd depth level of the three.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为自定义
TreeCellRenderer
的替代方案,您可以替换collapsedIcon
和expandedIcon
的 UI 默认值:TreeIcon
很简单Icon
接口的实现:As an alternative to a custom
TreeCellRenderer
, you can replace the UI defaults forcollapsedIcon
andexpandedIcon
:TreeIcon
is simply an implementation of theIcon
interface:实现自定义
TreeCellRenderer
- 对组件使用JLabel
,并使用存储在树中的对象数据设置其图标。如果对象是原始对象(例如字符串),您可能需要包装对象以存储其深度等http://download.oracle.com/javase/7/docs/api/javax/swing/tree/TreeCellRenderer.html
http://www.java2s.com/Code/Java/Swing-JFC /TreeCellRenderer.htm
Implement a custom
TreeCellRenderer
- use aJLabel
for the component, and set its icon however you like using the data of the Object stored in the tree. You may need to wrap the object to store its depth, etc. if the object is primitive (String for example)http://download.oracle.com/javase/7/docs/api/javax/swing/tree/TreeCellRenderer.html
http://www.java2s.com/Code/Java/Swing-JFC/TreeCellRenderer.htm