如何设置JavaFX对话框的高度?

时间:2019-04-29 21:31:59

标签: java javafx alert

如何设置JavaFX警报高度,其中对话框的contentTextnull?我发出了警报,并将contentText设置为null,但是对话框的contentText字段的高度并没有变小。如何使contentText字段的高度最小?

Alert alert = new Alert(AlertType.CONFIRMATION);
alert.setTitle("title");
alert.setHeaderText("I want to make dialog without contenttext");
alert.setContentText(null);    //this is null but this field is still remain

我只是这样尝试过。

alert.getDialogPane().setMaxHeight(10); //does not work.

1 个答案:

答案 0 :(得分:5)

使用此方法,您可以自定义警报的大小。

alert.getDialogPane().setMaxSize(2,2);

默认预览

enter image description here

预览代码后

enter image description here