我有警告:
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Loading");
alert.setHeaderText("Loading Dialog");
alert.setContentText("Please wait while we load.");
如果我跑
alert.showAndWait();
它按预期工作。但是,如果我跑
alert.show();
我得到了以下内容:
我需要使用show
,因为它是一个加载对话框,如果我使用showAndWait
,我的内容就无法加载。