gpt4 book ai didi

java - 制作带有标题和标签的对话框

转载 作者:行者123 更新时间:2023-12-02 11:20:18 26 4
gpt4 key购买 nike

如何使用 JOptionPane 制作一个类似于 this 的对话框有标题和描述吗?

最佳答案

我建议使用 Alert 来实现此目的,而不是 JOptionPane:

Alert alert = new Alert(AlertType.INFORMATION);
alert.setHeaderText("Total: $3.45");

GridPane content = new GridPane();
content.setHgap(10);
content.setVgap(3);
content.addColumn(0, new Text("Order:"), new Text("Tax:"), new Text("Total:"));
content.addColumn(1, new Text("3.25"), new Text("0.20"), new Text("3.45"));

alert.getDialogPane().setContent(content);
alert.showAndWait();

关于java - 制作带有标题和标签的对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49970527/

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