0
我想在ControlsFX中將焦點設置爲PropertySheet.Item
節點(例如TextField
)。 PropertySheet Item有唯一的名稱,所以我可以找到PropertySheet.Item
代碼propertySheet.getItems().get(i).getName()
。但是沒有API獲取Node
,這對應於屬性項目。我看到的唯一解決方案是walk scene graph與方法getChildrenUnmodifiable
。但是,當我穿越PropertySheet
用這種方法,它返回:將焦點設置在ControlsFX中的PropertySheet項目節點上
[email protected][styleClass=property-sheet]
[email protected]
[email protected][styleClass=tool-bar]
[email protected][styleClass=segmented-button]
[email protected]
[email protected][styleClass=toggle-button left-pill]''
我沒有得到任何的PropertySheet節點,如TextField
或ComboBox
。可以做到嗎?謝謝。