Pop up instructions我不确定如何用按钮在Java fx中打开新窗口。因此,如果我正在创建游戏,是否会为弹出窗口创建一个新舞台?我附了一张照片。
这是我的按钮代码,我已经将其添加到场景中了。
Button in = new Button(" Instructions");
in.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Information Dialog");
alert.setHeaderText("Look, an Information Dialog");
alert.setContentText("I have a great message for you!");
event.consume();
}
});