我希望我的JavaFX <!--?php var_dump("Hello world");?-->
在选择后失去焦点。有什么想法吗?
答案 0 :(得分:3)
不幸的是,javafx没有公共api以编程方式从节点转移远离。根据{{3}}的建议,解决方法是明确请求将焦点放在另一个节点上:
node.requestFocus();
这样做意味着调用代码知道该节点(在OP的上下文中似乎就是这种情况)。
实际上,Scene上的是 api,它提供了所需的功能。低端:它的包是私有的,需要在com.sun.xx层次结构中使用类Direction。因此,如果您愿意(并允许)承担风险,另一种方法是反思性地调用该API:
/**
* Utility method to transfer focus from the given node into the
* direction. Implemented to reflectively (!) invoke Scene's
* package-private method traverse.
*
* @param node
* @param next
*/
public static void traverse(Node node, Direction dir) {
Scene scene = node.getScene();
if (scene == null) return;
try {
Method method = Scene.class.getDeclaredMethod("traverse",
Node.class, Direction.class);
method.setAccessible(true);
method.invoke(scene, node, dir);
} catch (NoSuchMethodException | SecurityException
| IllegalAccessException | IllegalArgumentException
| InvocationTargetException e) {
e.printStackTrace();
}
}
// usage, f.i. on change of selection of a comboBox
combo.getSelectionModel().selectedItemProperty().addListener((source, ov, nv) -> {
traverse(combo, Direction.NEXT);
});