如何在 JAVAFX 中将控件从不同的 VBox 对齐
How to align controls from to differents VBox in JAVAFX
我有一个带有 5 个文本 classes 的 Vbox,还有一个带有 TextField、DatePicker、RadioButton、ToggleButton 和一个复选框的 Vbox。 5 和 5. 我想连续使用 HBox 将第一个 Vbox 中的第一个文本 class 与第二个 Vbox 中的第一个控件对齐。
我该怎么办?
VBox verticaltextbox1 = new VBox();
Text nombre = new Text("Nombre");
Text fecha = new Text("Fecha");
Text genero = new Text("Genero");
Text reservacion = new Text("Reservacion");
Text tecnologias = new Text("Tecnologias conocidas");
VBox verticaltextbox2 = new VBox();
TextField caja = new TextField();
DatePicker calendario = new DatePicker(LocalDate.now());
RadioButton masculino = new RadioButton("Masculino");
ToggleButton reservacionSi = new ToggleButton("Si");
CheckBox java = new CheckBox("Java");
verticaltextbox1.getChildren().addAll(nombre, fecha, genero,
reservacion,tecnologias);
verticaltextbox2.getChildren().addAll(caja, calendario, masculino,
reservacionSi, java);
HBox horizontalbox = new HBox(50);
horizontalbox.getChildren().addAll(verticaltextbox1,verticaltextbox2)
您最好使用 GridPane
:
GridPane gridPane = new GridPane();
gridPane.setHgap(50);
gridPane.addRow(0, text1, textField);
gridPane.addRow(1, text2, datePicker);
gridPane.addRow(2, text3, radioButton);
gridPane.addRow(3, text4, toggleButton);
gridPane.addRow(4, text5, checkBox);
这会将文本节点水平对齐,其余节点在列中水平对齐,并在网格中垂直对齐相应的文本和控制节点。
我有一个带有 5 个文本 classes 的 Vbox,还有一个带有 TextField、DatePicker、RadioButton、ToggleButton 和一个复选框的 Vbox。 5 和 5. 我想连续使用 HBox 将第一个 Vbox 中的第一个文本 class 与第二个 Vbox 中的第一个控件对齐。 我该怎么办?
VBox verticaltextbox1 = new VBox();
Text nombre = new Text("Nombre");
Text fecha = new Text("Fecha");
Text genero = new Text("Genero");
Text reservacion = new Text("Reservacion");
Text tecnologias = new Text("Tecnologias conocidas");
VBox verticaltextbox2 = new VBox();
TextField caja = new TextField();
DatePicker calendario = new DatePicker(LocalDate.now());
RadioButton masculino = new RadioButton("Masculino");
ToggleButton reservacionSi = new ToggleButton("Si");
CheckBox java = new CheckBox("Java");
verticaltextbox1.getChildren().addAll(nombre, fecha, genero,
reservacion,tecnologias);
verticaltextbox2.getChildren().addAll(caja, calendario, masculino,
reservacionSi, java);
HBox horizontalbox = new HBox(50);
horizontalbox.getChildren().addAll(verticaltextbox1,verticaltextbox2)
您最好使用 GridPane
:
GridPane gridPane = new GridPane();
gridPane.setHgap(50);
gridPane.addRow(0, text1, textField);
gridPane.addRow(1, text2, datePicker);
gridPane.addRow(2, text3, radioButton);
gridPane.addRow(3, text4, toggleButton);
gridPane.addRow(4, text5, checkBox);
这会将文本节点水平对齐,其余节点在列中水平对齐,并在网格中垂直对齐相应的文本和控制节点。