JavaFX警报可以ShowAndWait但不能显示

时间:2017-04-24 19:09:04

标签: java javafx

我有警告:

Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Loading");
alert.setHeaderText("Loading Dialog");
alert.setContentText("Please wait while we load.");

如果我跑

alert.showAndWait();

它按预期工作。但是,如果我跑

alert.show();

我得到了以下内容:

enter image description here

我需要使用show,因为它是一个加载对话框,如果我使用showAndWait,我的内容就无法加载。

0 个答案:

没有答案