Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 JavaFX 中,是否可以从节点 A 将焦点转移到下一个可聚焦节点节点 B?
您可以使用 Node 的方法 impl_traverse 将焦点设置在下一个可聚焦节点上:
A.impl_traverse(Direction.NEXT)
或在 JavaFX 8 中:
new KeyboardShortcutsHandler().traverse(A, Direction.NEXT)