将焦点放在 ControlsFX 中的 PropertySheet 项目节点
Set focus on PropertySheet Item Node in ControlsFX
我想在 ControlsFX 中将焦点设置在 PropertySheet.Item
节点(例如 TextField
)上。 PropertySheet 项目具有唯一的名称,因此我可以找到代码 propertySheet.getItems().get(i).getName()
的 PropertySheet.Item
。但是没有API得到对应属性项的Node
。我看到的唯一解决方案是 walk scene graph 方法 getChildrenUnmodifiable
。但是当我用这种方法遍历 PropertySheet
时 returns:
PropertySheet@1ab0e7e0[styleClass=property-sheet]
BorderPane@46e1b462
ToolBar@93ba99a[styleClass=tool-bar]
SegmentedButton@d5c968[styleClass=segmented-button]
HBox@1c3283db
ToggleButton@2fffaccc[styleClass=toggle-button left-pill]''
我没有得到任何属性表节点,例如 TextField
或 ComboBox
。有可能做到吗?谢谢。
我找到了解决办法。
您必须使用 setPropertyEditorFactory
和将存储所有节点的全局 hashmap 变量,以便稍后访问它。下面的示例代码。
public Map<String, Node> nodes = new HashMap<>();
SimpleObjectProperty<Callback<PropertySheet.Item, PropertyEditor<?>>> propertyEditorFactory =
new SimpleObjectProperty<>(this, "propertyEditor", new DefaultPropertyEditorFactory());
propertySheet.setPropertyEditorFactory((PropertySheet.Item param) -> {
PropertyEditor node = propertyEditorFactory.get().call(param);
nodes.put(uniquePropertyName, node.getEditor());
return node;
});
在此之后你可以关注 属性 节点:
nodes.get(propertyName).requestFocus();
我想在 ControlsFX 中将焦点设置在 PropertySheet.Item
节点(例如 TextField
)上。 PropertySheet 项目具有唯一的名称,因此我可以找到代码 propertySheet.getItems().get(i).getName()
的 PropertySheet.Item
。但是没有API得到对应属性项的Node
。我看到的唯一解决方案是 walk scene graph 方法 getChildrenUnmodifiable
。但是当我用这种方法遍历 PropertySheet
时 returns:
PropertySheet@1ab0e7e0[styleClass=property-sheet]
BorderPane@46e1b462
ToolBar@93ba99a[styleClass=tool-bar]
SegmentedButton@d5c968[styleClass=segmented-button]
HBox@1c3283db
ToggleButton@2fffaccc[styleClass=toggle-button left-pill]''
我没有得到任何属性表节点,例如 TextField
或 ComboBox
。有可能做到吗?谢谢。
我找到了解决办法。
您必须使用 setPropertyEditorFactory
和将存储所有节点的全局 hashmap 变量,以便稍后访问它。下面的示例代码。
public Map<String, Node> nodes = new HashMap<>();
SimpleObjectProperty<Callback<PropertySheet.Item, PropertyEditor<?>>> propertyEditorFactory =
new SimpleObjectProperty<>(this, "propertyEditor", new DefaultPropertyEditorFactory());
propertySheet.setPropertyEditorFactory((PropertySheet.Item param) -> {
PropertyEditor node = propertyEditorFactory.get().call(param);
nodes.put(uniquePropertyName, node.getEditor());
return node;
});
在此之后你可以关注 属性 节点:
nodes.get(propertyName).requestFocus();