我使用的是javafx,想在按钮的"setOnAction"中写一段代码来关闭javafx1类并运行javafx2类,但我看到错误"应用程序启动不能调用多次"。我该怎么解决这个问题?
//This code is in the class JavaFX1:
button.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
JavaFX2.main(null); //How can i change current line?
stage.close();
}
});
它是这样完成的:
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
Stage secondStage = new Stage();
secondStage.setScene(new Scene(new HBox(4, new Label("Second window"))));
secondStage.show();
}
您还可以设置新窗口的坐标和大小。