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.
25 lines
655 B
25 lines
655 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import java.lang.*?>
|
|
<?import java.util.*?>
|
|
<?import javafx.scene.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<?import javafx.scene.text.Text?>
|
|
<VBox xmlns="http://javafx.com/javafx"
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
prefHeight="400.0" prefWidth="600.0">
|
|
<Label text="Nom du capteur"/>
|
|
<TextField fx:id="nomCapteur"/>
|
|
|
|
<Label text="Temperature captée"/>
|
|
<Label fx:id="valeurCapteur"/>
|
|
|
|
<Label text="temps entre chaque génération"/>
|
|
<Spinner fx:id="spinTps" />
|
|
|
|
<Label text="id du capteur"/>
|
|
<Label fx:id="idCapteur"/>
|
|
</VBox>
|