DynamicTree编辑根节点Java swing
我正在使用 sun 提供的类“DynamicTree”:这里是链接
我想知道是否可以以某种方式编辑代码以使树根名称可编辑。
I'm using the class "DynamicTree" provided by sun:here is the link
I wanted to know if it's possible to edit the code in some way to make the tree root name editable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过修改树属性使树节点可编辑,即您需要通过更改以下代码使树可编辑:
tree.setEditable(true)
但请注意,通过此更改,可以通过按 F2 键重命名节点(对于教程中引用的演示代码)。
You can make the tree node editable by modifying tree properties, i.e you need to make the tree editable by making this code change:
tree.setEditable(true)
But note that with this change the rename of node is possible (for the demo code referred in the tutorial) by pressing the F2 key.