<?xml version="1.0" encoding="UTF-8"?> <?import javafx.scene.control.Label?> <?import javafx.scene.control.TextField?> <?import javafx.scene.layout.ColumnConstraints?> <?import javafx.scene.layout.GridPane?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.layout.RowConstraints?> <GridPane maxWidth="-Infinity" prefHeight="96.0" prefWidth="479.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.amap.lidar.amapvox.gui.VoxelSpacePanelController"> <columnConstraints> <ColumnConstraints maxWidth="131.0" minWidth="10.0" percentWidth="33.0" prefWidth="131.0" /> <ColumnConstraints maxWidth="98.0" minWidth="10.0" percentWidth="33.0" prefWidth="98.0" /> <ColumnConstraints maxWidth="94.0" minWidth="10.0" percentWidth="33.0" prefWidth="78.0" /> </columnConstraints> <rowConstraints> <RowConstraints minHeight="10.0" vgrow="SOMETIMES" /> <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> </rowConstraints> <children> <HBox alignment="CENTER_LEFT" spacing="2.0"> <children> <Label text="X min" /> <TextField fx:id="textfieldEnterXMin" prefHeight="26.0" prefWidth="90.0" promptText="Enter X" /> </children> </HBox> <HBox alignment="CENTER_LEFT" spacing="2.0" GridPane.columnIndex="1"> <children> <Label text="X max" /> <TextField fx:id="textfieldEnterXMax" prefHeight="26.0" prefWidth="90.0" promptText="Enter X" /> </children> </HBox> <HBox alignment="CENTER_LEFT" spacing="2.0" GridPane.columnIndex="2"> <children> <Label text="X number" /> <TextField fx:id="textfieldXNumber" prefHeight="26.0" prefWidth="90.0" /> </children> </HBox> <HBox alignment="CENTER_LEFT" spacing="2.0" GridPane.rowIndex="1"> <children> <Label text="Y min" /> <TextField fx:id="textfieldEnterYMin" prefHeight="26.0" prefWidth="90.0" promptText="Enter Y" /> </children> </HBox> <HBox alignment="CENTER_LEFT" spacing="2.0" GridPane.columnIndex="1" GridPane.rowIndex="1"> <children> <Label text="Y max" /> <TextField fx:id="textfieldEnterYMax" prefHeight="26.0" prefWidth="90.0" promptText="Enter Y" /> </children> </HBox> <HBox alignment="CENTER_LEFT" spacing="2.0" GridPane.columnIndex="2" GridPane.rowIndex="1"> <children> <Label text="Y number" /> <TextField fx:id="textfieldYNumber" prefHeight="26.0" prefWidth="90.0" /> </children> </HBox> <HBox alignment="CENTER_LEFT" spacing="2.0" GridPane.rowIndex="2"> <children> <Label text="Z min" /> <TextField fx:id="textfieldEnterZMin" prefHeight="26.0" prefWidth="90.0" promptText="Enter Z" /> </children> </HBox> <HBox alignment="CENTER_LEFT" spacing="2.0" GridPane.columnIndex="1" GridPane.rowIndex="2"> <children> <Label text="Z max" /> <TextField fx:id="textfieldEnterZMax" prefHeight="26.0" prefWidth="90.0" promptText="Enter Z" /> </children> </HBox> <HBox alignment="CENTER_LEFT" spacing="2.0" GridPane.columnIndex="2" GridPane.rowIndex="2"> <children> <Label text="Z number" /> <TextField fx:id="textfieldZNumber" prefHeight="26.0" prefWidth="90.0" /> </children> </HBox> </children> </GridPane>