JTree 节点重命名

发布于 2024-09-19 02:07:16 字数 225 浏览 6 评论 0原文

我正在使用 JTree,在此重命名 JTree 节点我使用右键单击(通过弹出窗口重命名)或 F2 键或双击。但问题是:当我重命名名称并按 Enter 键时,节点成功重命名,当我重命名名称并单击框架上的任意位置(windows 资源管理器样式)时,节点成功重命名名称不重命名。

请给我一个解决这个问题的方法,并提前致谢。

I am using a JTree and in this to raname a JTree node I am using right click(Rename through popup) or F2 key or double click. But problem is : when I rename a name and hit Enter key, node successfully renamed and when I rename a name and click anywhere on the frame(windows explorer style), node name does not rename.

Please give me a solution for this problem and Thanks in advance.

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

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

发布评论

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

评论(2

预谋 2024-09-26 02:07:16

可能有点晚了,但正确的解决方案是调用 JTree.setInvokesStopCellEditing(true) 。当用户按下回车键或单元格编辑器失去焦点时,这将导致树执行重命名。

It's probably a little late, but the correct solution is to call JTree.setInvokesStopCellEditing(true). This will cause the tree to execute the rename when the user hits enter, or when the cell editor loses focus.

谎言月老 2024-09-26 02:07:16

通过单击树中其他位置来保存当前编辑的功能并不是默认 JTree 实现的标准配置。您将必须详细了解如何使用树并进行一些特殊的自定义才能实现此功能。这听起来好像会涉及到Swing组件的焦点的东西,即当树获得焦点时,如果节点正在编辑,则保存节点重命名。

The ability to save the current edit by clicking elsewhere in the tree is not something that comes standard as part of the default JTree implementation. You're going to have to get into the details of how to use trees and do some special customization in order to achieve this functionality. This sounds like it would involve something with the focus of Swing components, i.e., when the tree gains focus, if the node is being edited, then save the node rename.

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