我想找到裝有FXMLoader
感謝Node#lookup()
一個場景中的垂直框節點,但我得到以下異常:的JavaFX 2.0 + FXML - 奇怪的查詢行爲
java.lang.ClassCastException: com.sun.javafx.scene.control.skin.SplitPaneSkin$Content cannot be cast to javafx.scene.layout.VBox
代碼:
public class Main extends Application {
public static void main(String[] args) {
Application.launch(Main.class, (java.lang.String[]) null);
}
@Override
public void start(Stage stage) throws Exception {
AnchorPane page = (AnchorPane) FXMLLoader.load(Main.class.getResource("test.fxml"));
Scene scene = new Scene(page);
stage.setScene(scene);
stage.show();
VBox myvbox = (VBox) page.lookup("#myvbox");
myvbox.getChildren().add(new Button("Hello world !!!"));
}
}
的FXML文件:
<AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns:fx="http://javafx.com/fxml" >
<children>
<SplitPane dividerPositions="0.5" focusTraversable="true" prefHeight="400.0" prefWidth="600.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<items>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="160.0" prefWidth="100.0" />
<VBox fx:id="myvbox" prefHeight="398.0" prefWidth="421.0" />
</items>
</SplitPane>
</children>
</AnchorPane>
我想知道:
1.爲什麼查找方法返回一個SplitPaneSkin$Content
而不是VBox
?
2.如何以其他方式獲得VBox
?
預先感謝
我已經更新了我的用一個簡單的例子發佈。我知道'@ FXML'註釋,但我不能使用它,因爲id是自動生成的。 –
更新瞭解決方法 –
太棒了,它工作正常。我沒有想到FXMLoader爲它們分配了與root子相同的id。我很高興看到甲骨文的JavaFX UI團隊的QA技術負責人迴應了stackoverflow的問題。 **非常感謝** –