如何在JFXtras窗口中使用FXML文档?

时间:2015-01-29 14:49:43

标签: javafx window fxml scenebuilder jfxtras

对于JFXtras窗口对象的内容,我们应该只在IDE上使用代码部分吗?

Window w = new Window("My Window#"+counter);
w.getContentPane().getChildren().add(new Label("Content... \nof the window#"));
root.getChildren().add(w);

例如,我用场景构建器准备了一个fxml文档,我希望它在jfxtras窗口中显示。但我不能把窗户变成舞台。

1 个答案:

答案 0 :(得分:1)

Node中加载fxml并设置为内容

Node node = FXMLLoader.load(getClass().getResource("yourFxml.fxml"));
w.getContentPane().getChildren().add(node);