Skip to content
Snippets Groups Projects
Select Git revision
  • ad0065a0f7e60fa16124d9ab310cf943a92a19c3
  • master default protected
  • jalon2
  • jalon1
4 results

load-data-stage.fxml

Blame
  • load-data-stage.fxml 2.09 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    
    <?import javafx.scene.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.text.*?>
    <?import javafx.stage.*?>
    
    <Stage fx:id="stage" xmlns="http://javafx.com/javafx/17.0.12" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.univlille.sae.classification.controller.LoadDataController">
        <scene>
            <Scene>
                <AnchorPane prefHeight="143.0" prefWidth="363.0">
                <children>
                   <VBox layoutX="-1.0" layoutY="1.0" prefHeight="151.0" prefWidth="364.0">
                      <children>
                         <HBox alignment="CENTER" prefHeight="91.0" prefWidth="272.0">
                            <children>
                               <Button fx:id="browseFile" mnemonicParsing="false" onAction="#openFileChooser" stylesheets="@../css/style.css" text="Parcourir" textFill="WHITE">
                                  <font>
                                     <Font name="System Bold" size="13.0" />
                                  </font></Button>
                               <TextField fx:id="filePath" prefHeight="26.0" prefWidth="207.0" />
                            </children>
                         </HBox>
                         <HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0">
                            <children>
                               <ChoiceBox fx:id="fileType" prefWidth="150.0" stylesheets="@../css/style.css" />
                            </children>
                         </HBox>
                         <HBox alignment="CENTER" prefHeight="76.0" prefWidth="310.0">
                            <children>
                               <Button fx:id="confirmDataSelection" mnemonicParsing="false" onAction="#validate" stylesheets="@../css/style.css" text="Valider" textFill="WHITE">
                                  <font>
                                     <Font name="System Bold" size="13.0" />
                                  </font></Button>
                            </children>
                         </HBox>
                      </children>
                   </VBox>
                </children></AnchorPane>
            </Scene>
        </scene>
    </Stage>