Skip to content
Snippets Groups Projects
Select Git revision
  • 23ddda055611f4752b8eea7a18c19c804f4f6491
  • main default protected
2 results

check04exe

Blame
  • Forked from LABOUREL Arnaud / M1 INFO FSI TP Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    putElementCount.fxml 1.57 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    
    <AnchorPane xmlns="http://javafx.com/javafx"
                xmlns:fx="http://javafx.com/fxml"
                fx:controller="controller.ControllerPutElementCount"
                prefHeight="400.0" prefWidth="600.0">
    
          <VBox alignment="CENTER" spacing="20">
    
                <Label text="Enter the Number of Elements" />
    
                <HBox spacing="10">
                      <Label text="Fire:" />
                      <TextField fx:id="fire" text="3" />
                </HBox>
    
                <HBox spacing="10">
                      <Label text="FireFighter:" />
                      <TextField fx:id="firefighter" text="5" />
                </HBox>
    
                <HBox spacing="10">
                      <Label text="Motorised FireFighter:" />
                      <TextField fx:id="motorisedFireFighter" text="7" />
                </HBox>
    
                <HBox spacing="10">
                      <Label text="Mountain:" />
                      <TextField fx:id="mountain" text="5"/>
                </HBox>
    
                <HBox spacing="10">
                      <Label text="Cloud:" />
                      <TextField fx:id="cloud" text="5" />
                </HBox>
    
                <HBox spacing="10">
                      <Label text="Road:" />
                      <TextField fx:id="road" text="5" />
                </HBox>
    
                <HBox spacing="10">
                      <Label text="Rockerie:" />
                      <TextField fx:id="rockerie" text="5" />
                </HBox>
    
                <Button text="Validate" onAction="#initialize" />
    
          </VBox>
    
    </AnchorPane>