我正在创建一个 Gluon ParticleApplication,我需要更改退出消息和/或退出程序,它在哪里或者我应该覆盖什么?感谢你的回答。
问问题
77 次
1 回答
0
当前实现使用Alert
对话框来显示消息,只要有退出事件(来自工具栏或菜单操作)或来自关闭请求事件。
虽然此对话框不可自定义,但有一个showCloseConfirmation
属性允许您取消该对话框,因此您可以静默退出应用程序,也可以提供自己的对话框。
例如,基于使用 Gluon 插件创建的默认单桌面项目,我们可以修改exit
下面的操作MenuActions
:
@Inject
ParticleApplication app;
@ActionProxy(text="Exit", accelerator="alt+F4")
private void exit() {
// disable built-in dialog
app.setShowCloseConfirmation(false);
// create a custom dialog
Alert dialog = new Alert(Alert.AlertType.CONFIRMATION, "Custom exit Message");
Optional<ButtonType> result = dialog.showAndWait();
if(result.isPresent() && result.get().equals(ButtonType.OK)) {
app.exit();
}
}
此外,您需要在主类中处理关闭请求事件,使用这些事件并调用您的exit
操作:
@Override
public void postInit(Scene scene) {
...
scene.windowProperty().addListener(new InvalidationListener() {
@Override
public void invalidated(Observable observable) {
scene.getWindow().setOnCloseRequest(e -> {
e.consume();
action("exit").handle(new ActionEvent());
});
scene.windowProperty().removeListener(this);
}
});
}
于 2016-04-25T15:39:50.320 回答