我在我的程序中使用 JFXDialog 来显示程序的主要功能正在加载。我使用 JFXSpinner 来展示这一点。问题是,当显示加载对话框时,单击对话框外的任何地方都可以将其关闭。我尝试使用设置overlayClose 的JFXDialog 的第三个构造函数,但是无论我将其设置为true 还是false,它都不会改变任何内容。
有谁碰巧知道可以做些什么来防止在点击离开时关闭对话框?
JFXDialog.java
如源文件中所写:
/**
* indicates whether the dialog will close when clicking on the overlay or not
*
* @return
*/
private BooleanProperty overlayClose = new SimpleBooleanProperty(true);
public final BooleanProperty overlayCloseProperty() {
return this.overlayClose;
}
public final boolean isOverlayClose() {
return this.overlayCloseProperty().get();
}
public final void setOverlayClose(final boolean overlayClose) {
this.overlayCloseProperty().set(overlayClose);
}
你应该使用yourDialog.setOverlayClose(false);