添加“展开”按钮到没有子节点的 JTree 节点?

发布于 2024-08-26 06:00:28 字数 128 浏览 3 评论 0原文

我想将“扩展”按钮添加到 JTree 的节点以指示它们是可扩展的。问题是,在用户单击它们之前,它们没有子级(由于在后台进行处理)。

有什么方法可以将节点设置为父节点或拥有子节点,而无需它实际拥有子节点吗?

谢谢

I'd like to add the 'expand' button to my JTree's nodes to indicate that they are expandable. The catch is that they have no children until the user clicks on them (due to processing that happens in the background).

Is there any way I can set a node as a parent or having children without it actually having children?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

唠甜嗑 2024-09-02 06:00:28

可以使用您自己的 DefaultMutableTreeNode实现重写 isLeaf()

如果该节点没有子节点,则返回 true。

Swing 教程:JTree 对此进行了解释在4.1动态树下。

It's possible using your own DefaultMutableTreeNode implementation overriding isLeaf():

Returns true if this node has no children.

Swing Tutorial: JTree explains it under 4.1 Dynamic Tree.

旧梦荧光笔 2024-09-02 06:00:28

有一个假的子/子计数并使用 TreeWillExpandListener 将其替换为真实的子项

Have a fake child/child count and replace it with real children using TreeWillExpandListener

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