eppleton / javafxbuch

Demos und Projekte für das JavaFX Buch von Anton Epple
14 stars 16 forks source link

The definition of the gridPane was not here #9

Closed dgruntz closed 6 years ago

dgruntz commented 6 years ago

The original start method looks as follows:

@Override
public void start(Stage primaryStage) {

    Scene scene = new Scene(gridPane, 400,160);
    primaryStage.setScene(scene);
    primaryStage.show();
}

In this method a gridPane is used but this field is not defined. I have copied over the code from the book.

eppleton commented 6 years ago

thanks, keep them coming :)!

dgruntz commented 6 years ago

thanks, keep them coming :)!

OK, will do that, but I first read through the whole book.