应用程序在显示自定义对话框后未响应Touch-Events

时间:2016-02-19 09:37:57

标签: java javafx touch javafx-8

就像标题暗示我的应用程序有问题。应用程序应该以全屏模式运行(无意切换回窗口模式),因此我设计了一个页脚栏,其中包含一些图像(带有标签,在VBox中),以便用户可以导航或退出程序。 / p>

因此,在启动应用程序后,所有按钮都可以正常工作。通过打开我的自定义对话框,甚至我的页脚栏中的退出按钮也能正确响应。但这里开始我的问题。对话框由showAndWait() - 方法调用显示,但不响应Touch-Events。相反,仍处理鼠标事件(我仍然可以使用鼠标单击对话框中的按钮,对话框正确响应)。

我希望有人知道我做错了什么。

MyDialog.java:

public static boolean showExitDialog(Window owner, ResourceBundle resources) {
LOGGER.info("Showing exit dialog...");
final Dialog<ButtonType> dialog = new Dialog<ButtonType>();
dialog.getDialogPane().getStylesheets().add(MyDialog.getInstace().getCssPath());
dialog.setContentText(resources.getString("label.exitdialog.text"));
dialog.setHeaderText(resources.getString("label.exitdialog.header"));
dialog.initOwner(owner);
dialog.initStyle(StageStyle.TRANSPARENT);
dialog.initModality(Modality.APPLICATION_MODAL);
dialog.getDialogPane().getButtonTypes().add(new ButtonType(resources.getString("btn.Exitdialog.exit"), ButtonData.OK_DONE););
dialog.getDialogPane().getButtonTypes().add(new ButtonType(resources.getString("btn.Exitdialog.cancel"), ButtonData.FINISH));


Optional<ButtonType> result = dialog.showAndWait();
LOGGER.debug("Result: {}", result.get());
if(result.isPresent() && result.get().getButtonData() == ButtonData.OK_DONE) {
    LOGGER.info("Closing exit dialog returning true...");
    return true;
} else {
    LOGGER.info("Closing exit dialog returning false...");
    return false;
}
}

在MainApp.java中:

private EventHandler<WindowEvent> confirmCloseEventHandler = event -> {
    // close event handling logic.
    // consume the event if you wish to cancel the close operation.

if(MyDialog.showExitDialog(primaryStage, rb)) {
    event.consume();
    System.exit(0);
}
};
...
primaryStage.setOnCloseRequest(confirmCloseEventHandler);

在FooterBar.java中:

@FXML
private void exitProgramPressedTouch(TouchEvent event) {
event.consume();
controller.getWindow().fireEvent(new WindowEvent(controller.getWindow(), WindowEvent.WINDOW_CLOSE_REQUEST));
}

*编辑*完全忘了:没有异常或其他任何东西被抛出。

1 个答案:

答案 0 :(得分:0)

我不知道所描述行为的原因 - 也许是一个错误。但是,您可以尝试收听ActionEvent而不是TouchEvent。它处理触摸和鼠标事件:

@FXML
private void exitProgramPressedTouch(ActionEvent event) {
  event.consume();
  controller.getWindow().fireEvent(new WindowEvent(controller.getWindow(), WindowEvent.WINDOW_CLOSE_REQUEST));
}

也许你还需要更改在FXML文件中绑定事件监听器(从onTouchonAction)的属性。

最后,我认为,如果仅在单击取消按钮时使用关闭事件,则可以避免System.exit(0);

if(!MyDialog.showExitDialog(primaryStage)) {
  event.consume();
}