JavaFX Have multiple Panes in one scene?
问题 I am trying to make an application which will have a date at the top (always automatically centered) and content at the bottom which is not going to be aligned to any direction. I figured the best way to do this would be to have: Pane normalLayout = new Pane(); StackPane centeredLayout = new Stackpane(); Label centeredText = new Label("I want this text centered!"); Button unorganizedButton = new Button("Press me"); centeredLayout.getChildren().add(centeredText); normalLayout.getChildren().add