我将controlsFX 用于对话框,但我不知道如何设置宽度。我的很多信息只包括标题、标头和按钮。但是按钮中的文本没有完全显示。例如:
Action deleteStuff = new DialogAction("Delete Stuff", ButtonBar.ButtonType.OTHER);
Action deleteMoreStuff = new DialogAction("Delete More Stuff", ButtonBar.ButtonType.OTHER);
Action response = Dialogs.create()
.owner(stage)
.title("Delete")
.masthead("This is a delete dialog")
.actions(deleteStuff,deleteMoreStuff,Dialog.ACTION_CANCEL)
.showConfirm();
其中一个按钮将显示:“删除莫...”
是的,我知道我应该使用 Alert 类,但该项目适用于运行旧版本 Java 的机器。提前致谢。