我使用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();
其中一个按钮将显示:"删除Mo ..."
是的,我知道我应该使用Alert类,但该项目适用于运行旧版Java的机器。提前谢谢。