Jtree 到 JPanel

发布于 2024-12-27 10:38:59 字数 274 浏览 2 评论 0原文

我有一个 JTree 对象,它使用 DefaultTreeModel 作为模型,并且我添加/删除与该模型相关的节点。

此时,我需要在图形界面(例如 JPanel)中显示树结构。如何将 DefaultTreeModel 元素映射到 Jpanel 对象?换句话说,如何将 JTree 对象绘制到 JPanel 对象中。由于树可以修改,因此实施应该反映这些变化。

谢谢你的关心。

I have a JTree object which uses DefaultTreeModel as model and I add/remove nodes respect to that model.

At that point, I need to show tree structure in graphical interface such as JPanel. How can I map DefaultTreeModel elements into Jpanel object? In other words, how can I draw JTree objects into JPanel object. Since tree can be modified, implementation should reflect the changes.

Thanks for your care.

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

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

发布评论

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

评论(1

空名 2025-01-03 10:38:59

像这样的东西:

JPanel p = new JPanel(new BorderLayout());
JScrollPane sp = new JScrollPane(jtree);
p.add(BorderLayout.CENTER, sp);

Something like:

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