如何在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()
或其他方式?