I'd like to set results to the centre of Pane
.
Label results = new Label("You win");
Pane pane = new Pane();
pane.getChildren().add(results);
I've tried both lines of code below and neither works.
results.setAlignment(Pos.CENTER);
results.setContentDisplay(ContentDisplay.CENTER);
Btw, I know how to get this centered with StackPane
and GridPane
but in this case I need to use a plain Pane
.