How to remove JavaFX stage buttons (minimize, maximize, close)? Can\'t find any according Stage
methods, so should I use style for the stage? It\'s necessary fo
stage.initModality(Modality.APPLICATION_MODAL);
stage.setResizable(false);
I found this answer here --> http://javafxportal.blogspot.ie/2012/03/to-remove-javafx-stage-buttons-minimize.html We can do it:
enter code here
@Override
public void start(Stage primaryStage) {
primaryStage.initStyle(StageStyle.UNDECORATED);
Group root = new Group();
Scene scene = new Scene(root, 100, 100);
primaryStage.setScene(scene);
primaryStage.show();
}
stage.initStyle(StageStyle.DECORATED);
stage.setResizable(false);