gpt4 book ai didi

javafx - 在 javafx 中显示单 Pane 警报

转载 作者:行者123 更新时间:2023-12-05 09:30:55 24 4
gpt4 key购买 nike

我正在使用以下代码来显示错误警报:

 Alert alert = new Alert(Alert.AlertType.ERROR);
alert.setContentText(resourceBundle.getString("loginError"));
alert.showAndWait();

enter image description here

这个警报对我来说看起来有点奇怪,因为有两个 Pane ,顶部的 Pane 只显示错误和一个十字按钮,底部的 Pane 显示文本 incorrect username or password
有没有办法摆脱顶部 Pane ?由于标题 Pane 已经显示错误和十字按钮,我看不出下一个 Pane 显示错误和红色十字按钮的原因

最佳答案

要删除 header ,请尝试

alert.setHeaderText(null);

要删除图标,请尝试

alert.setGraphic(null);
Alert alert = new Alert(AlertType.ERROR);
alert.setTitle("Error");
alert.setContentText("Incorrect Username or Password");
alert.setHeaderText(null);
alert.setGraphic(null);
alert.showAndWait();

enter image description here

关于javafx - 在 javafx 中显示单 Pane 警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69207220/

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