gpt4 book ai didi

JavaFX 8 如何将程序图标设置为警报?

转载 作者:行者123 更新时间:2023-12-04 22:56:33 26 4
gpt4 key购买 nike

如何在不使用 alert.initOwner() 的情况下将程序图标设置为警报?
为什么没有 initOwner ?因为在初始化整个窗口之前必须显示一些警报,所以我没有可以放入initOwner的场景。功能。

最佳答案

public class AlertWithIcon
extends Application {
@Override
public void start(Stage stage) {
Alert alert = new Alert(Alert.AlertType.CONFIRMATION,
"Are you sure you want to delete this item?",
ButtonType.YES, ButtonType.NO);
alert.setHeaderText("Delete Item");
((Stage)alert.getDialogPane().getScene().getWindow()).getIcons().add(new image("GenericApp.png"));
alert.showAndWait();
}
}

关于JavaFX 8 如何将程序图标设置为警报?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43505213/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com