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.
42 lines
1.7 KiB
42 lines
1.7 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?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>
|
|
<ImageView fx:id="imageView" fitHeight="400.0" fitWidth="425.0" pickOnBounds="true" preserveRatio="true" BorderPane.alignment="CENTER" />
|
|
</center>
|
|
<bottom>
|
|
<Button mnemonicParsing="false" onAction="#boutonFermer" text="Fermer" BorderPane.alignment="CENTER" fx:id="bouton">
|
|
<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="Image" />
|
|
<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>
|
|
</children>
|
|
<BorderPane.margin>
|
|
<Insets top="20.0" />
|
|
</BorderPane.margin>
|
|
</VBox>
|
|
</top>
|
|
</BorderPane>
|