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.
57 lines
2.2 KiB
57 lines
2.2 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Slider?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.text.Text?>
|
|
|
|
<BorderPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1">
|
|
<center>
|
|
<Slider fx:id="slider" max="70" min="-30" orientation="VERTICAL" showTickLabels="true" showTickMarks="true" value="0" BorderPane.alignment="CENTER">
|
|
<BorderPane.margin>
|
|
<Insets />
|
|
</BorderPane.margin>
|
|
</Slider>
|
|
</center>
|
|
<bottom>
|
|
<Button mnemonicParsing="false" onAction="#butonFermer" text="Fermer" BorderPane.alignment="CENTER">
|
|
<BorderPane.margin>
|
|
<Insets bottom="30.0" top="50.0" />
|
|
</BorderPane.margin>
|
|
</Button>
|
|
</bottom>
|
|
<top>
|
|
<VBox alignment="CENTER" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="50.0" prefWidth="100.0" BorderPane.alignment="CENTER">
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="thermometre" />
|
|
<HBox prefHeight="100.0" prefWidth="200.0">
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Capteur :">
|
|
<HBox.margin>
|
|
<Insets right="5.0" />
|
|
</HBox.margin>
|
|
</Text>
|
|
<Text fx:id="nomDuCapteur" strokeType="OUTSIDE" strokeWidth="0.0" />
|
|
</children>
|
|
</HBox>
|
|
<HBox prefHeight="100.0" prefWidth="200.0">
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Température :">
|
|
<HBox.margin>
|
|
<Insets right="5.0" />
|
|
</HBox.margin>
|
|
</Text>
|
|
<Text fx:id="valTemperature" strokeType="OUTSIDE" strokeWidth="0.0" />
|
|
</children>
|
|
</HBox>
|
|
</children>
|
|
<BorderPane.margin>
|
|
<Insets top="20.0" />
|
|
</BorderPane.margin>
|
|
</VBox>
|
|
</top>
|
|
</BorderPane>
|