You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
976 B

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Vue.Fenetre">
<TreeView />
<VBox alignment="CENTER" prefHeight="400" prefWidth="200" GridPane.columnIndex="1" GridPane.rowIndex="1">
<children>
<Label text="Ajouter un nouveau capteur" />
<TextField fx:id="addNameField" prefWidth="293.0" promptText="Nom du capteur" />
<VBox alignment="CENTER" prefWidth="200">
<children>
<ComboBox fx:id="addGenerationField" promptText="Type du capteur"/>
<ComboBox fx:id="ZoneDeCapteur" promptText="Choix du parent"/>
</children>
</VBox>
<Button fx:id="addSubmitButton" mnemonicParsing="false" text="Ajouter">
</children>
</VBox>
</AnchorPane>