DynamicTree编辑根节点Java swing

发布于 2024-08-18 20:40:15 字数 193 浏览 6 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里兽 2024-08-25 20:40:15

您可以通过修改树属性使树节点可编辑,即您需要通过更改以下代码使树可编辑:
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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文