是否可以在JavaFX的Alert中更改图形的位置?

时间:2019-06-12 00:47:58

标签: javafx alert

如何在JavaFX Alert中移动图形(图像)的位置?

这只是我所做的警告。

Alert a = new Alert(AlertType.INFORMATION);
a.setHeaderText(null);
a.setContentText("Now it is running.");
a.setGraphic(new ImageView(new Image("images/logo.gif"));

我想在对话框中间移动“ logo.gif”图像。 是否可以使用

lookup()

或其他方式?

0 个答案:

没有答案