Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

@FXML

private void closeButtonAction(){

// get a handle to the stage

Stage stage = (Stage) closeButton.getScene().getWindow();

// do what you have to do

stage.close();

Platform.exit();

/************************** Voir les controls JavaFX***********************/

Alert alert = new Alert(AlertType.INFORMATION);

alert.setTitle("Information Dialog");

alert.setHeaderText("Look, an Information Dialog");

alert.setContentText("I have a great message for you!");

alert.showAndWait();

https://o7planning.org/fr/11529/tutoriel-javafx-alert-dialog

https://code.makery.ch/blog/javafx-dialogs-official/

You might also like