Added no Fullscreen code

This commit is contained in:
Michael-Jouanneau 2016-10-29 20:20:21 +02:00
parent 2039f2b9ac
commit d7340c255d

View File

@ -11,12 +11,15 @@ public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
primaryStage.initStyle(StageStyle.UNDECORATED);
primaryStage.initStyle(StageStyle.UNIFIED);
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(root, 400, 400));
primaryStage.setScene(new Scene(root, 900, 500));
primaryStage.show();
primaryStage.maximizedProperty().addListener((observable, oldValue, newValue) -> {
if (newValue)
primaryStage.setMaximized(false);
});
root.lookup("#exit").setOnMouseClicked(event -> primaryStage.close()); // Close program if button is clicked
}