Hide/change collapse [-] and expand [ ] button on JTree

别说谁变了你拦得住时间么 提交于 2020-01-04 04:01:12

问题


Is there a way to hide the collapse [-] and expand [+] button on a java file JTree?
If it's not possible, is there a way to change it to a different icon?


回答1:


Yes to both: You can specify an empty Icon, as shown here. You can substitute your own implementation, as shown here. These are the relevant UIManager keys:

UIManager.put("Tree.collapsedIcon", empty);
UIManager.put("Tree.expandedIcon", empty);


来源:https://stackoverflow.com/questions/16953688/hide-change-collapse-and-expand-button-on-jtree

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!