Skip to content
Snippets Groups Projects
FileChooserTextField.fxml 1.03 KiB
Newer Older
<?xml version="1.0" encoding="UTF-8"?>

<?import java.lang.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>

<VBox xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.amap.lidar.amapvox.gui.FileChooserTextFieldController">
   <children>
      <HBox alignment="CENTER_LEFT" spacing="10.0">
         <children>
            <Label fx:id="label" text="File" />
            <TextField fx:id="textFieldFile" prefHeight="25.0" prefWidth="280.0" HBox.hgrow="ALWAYS" />
            <Button fx:id="buttonOpenFile" mnemonicParsing="false" onAction="#onActionButtonOpenFile" text="..." />
         </children>
         <VBox.margin>
            <Insets bottom="2.0" left="2.0" right="2.0" />
         </VBox.margin>
      </HBox>
   </children>
</VBox>