public void changeMeasurementPane(String measurementPaneLocation) { FXMLLoader loader = new FXMLLoader(this.getClass().getResource(measurementPaneLocation)); StackPane stackPane = null; try { stackPane = loader.load(); } catch (IOException e) { e.printStackTrace(); } measurementStackPane.getChildren().clear(); measurementStackPane.getChildren().add(stackPane); }