Вот как я настраиваю свое первое окно
Код: Выделить всё
@Override
public void start(Stage primaryStage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("Main.fxml"));
Scene scene = new Scene(root); primaryStage.setResizable(false);
primaryStage.setScene(scene);
primaryStage.setTitle("Hello World!");
primaryStage.show();
}
Подробнее здесь: https://stackoverflow.com/questions/237 ... g-a-button