我正在开发一个迷你应用程序,我需要同时向用户显示2个窗口。
我正在使用NetBeans 8.0.1上的JavaFx Scene Builder 2.0
可以这样做吗?如果是这样,怎么做?
谢谢!
答案 0 :(得分:3)
屏幕"屏幕"我认为你的意思是"窗口"。
只需在start()
方法中创建第二个阶段,并与初级阶段完全相同:
public class MyApp extends Application {
@Override
public void start(Stage primaryStage) {
Stage anotherStage = new Stage();
try {
FXMLLoader loader = new FXMLLoader(...); // FXML for primary stage
Parent root = loader.load();
Scene scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.show();
FXMLLoader anotherLoader = new FXMLLoader(...) ; // FXML for second stage
Parent anotherRoot = anotherLoader.load();
Scene anotherScene = new Scene(anotherRoot);
anotherStage.setScene(anotherScene);
anotherStage.show();
} catch (Exception exc) {
exc.printStackTrace();
}
}
public static void main(String[] args) { launch(args); }
}