gpt4 book ai didi

JavaFX对话框删除标题装饰

转载 作者:行者123 更新时间:2023-12-04 10:34:37 25 4
gpt4 key购买 nike

有没有一种快速的方法来删除JavaFX中的Dialog header ?还是我应该去创建自己的对话框?

TextInputDialog dialog = new TextInputDialog();
dialog.setTitle("create DATABASE");
dialog.setHeaderText("create DATABASE");
dialog.setContentText("Ingrese un nombre:");
dialog.showAndWait().ifPresent(name -> getCodeArea().setTemplateInjump("create database "+name+";\n\nuse "+name+";\n\n"));

enter image description here

最佳答案

是的,您可以通过将图形和标题文本设置为null来实现此目的:

dialog.setHeaderText(null);
dialog.setGraphic(null);

关于JavaFX对话框删除标题装饰,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47288981/

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