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.

28 lines
822 B

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ListView?>
<VBox alignment="CENTER" spacing="20.0" xmlns:fx="http://javafx.com/fxml"
fx:controller="action.ListView">
<padding>
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0"/>
</padding>
<Label text="WELCOME TO THIS CAPTAPPLICATION"/>
<Label fx:id="welcomeText"/>
<ListView fx:id="listeVisible" onMousePressed="#onButtonClick"/>
<Label fx:id="nameC"/>
<Label fx:id="temperatureC"/>
<Label fx:id="idC"/>
<Label fx:id="timeC"/>
<Label fx:id="strategieC"/>
<Button text="Démarrer le capteur" onAction="#startThreadButton"/>
</VBox>