对于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窗口中显示。但我不能把窗户变成舞台。
答案 0 :(得分:1)
在Node
中加载fxml并设置为内容
Node node = FXMLLoader.load(getClass().getResource("yourFxml.fxml"));
w.getContentPane().getChildren().add(node);