Exemplo n.º 1
0
 /** close the dialog */
 public void close() {
   animation.setRate(-1);
   animation.play();
   animation.setOnFinished(
       (e) -> {
         resetProperties();
         onDialogClosedProperty.get().handle(new JFXDialogEvent(JFXDialogEvent.CLOSED));
         dialogContainer.getChildren().remove(this);
       });
 }