hboxRuntime.setSpacing(10);
hboxRuntime.getChildren().add(tfRuntimePath);
hboxRuntime.getChildren().add(btnChooseRuntimePath);
tfRuntimePath.prefWidthProperty().bind(hboxRuntime.widthProperty().multiply(0.8));
btnChooseRuntimePath.prefWidthProperty().bind(hboxRuntime.widthProperty().multiply(0.2));
vbox.getChildren().add(new Label("Runtime Path"));
vbox.getChildren().add(hboxRuntime);
return vbox;