60 lines
3.4 KiB
XML
60 lines
3.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.Group?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.image.Image?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.layout.Pane?>
|
|
<?import javafx.scene.layout.StackPane?>
|
|
<?import javafx.scene.text.Font?>
|
|
<?import javafx.scene.text.Text?>
|
|
<?import javafx.scene.text.TextFlow?>
|
|
|
|
<AnchorPane fx:id="PaneDialog" style="-fx-background-color: rgba(0,0,0,0.6);" stylesheets="@../../Public/CSS/StylePrincipal.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" xmlns="http://javafx.com/javafx/13" xmlns:fx="http://javafx.com/fxml/1">
|
|
<children>
|
|
<StackPane layoutX="10.0" layoutY="10.0" prefHeight="231.0" prefWidth="497.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<children>
|
|
<Group>
|
|
<children>
|
|
<Pane prefHeight="231.0" prefWidth="497.0" style="-fx-background-color: #ffffff; -fx-border-color: #212121; -fx-border-radius: 10 10 0 0; -fx-background-radius: 10 10 0 0;">
|
|
<children>
|
|
<Pane layoutX="1.0" prefHeight="40.0" prefWidth="495.0" style="-fx-background-color: linear-gradient(to bottom, #585858, #333333); -fx-background-radius: 10 10 0 0;">
|
|
<children>
|
|
<Text fill="WHITE" layoutX="17.0" layoutY="24.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Dialog d'alert">
|
|
<font>
|
|
<Font name="Arial Bold" size="13.0" />
|
|
</font>
|
|
</Text>
|
|
</children>
|
|
</Pane>
|
|
<TextFlow layoutX="120.0" layoutY="112.0" prefHeight="48.0" prefWidth="342.0" textAlignment="JUSTIFY">
|
|
<children>
|
|
<Text fx:id="Message" strokeType="OUTSIDE" strokeWidth="0.0" text="Déscription" wrappingWidth="385.0546875">
|
|
<font>
|
|
<Font name="Arial" size="16.0" />
|
|
</font>
|
|
</Text>
|
|
</children>
|
|
</TextFlow>
|
|
<Text fx:id="Titre" layoutX="120.0" layoutY="86.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Titre">
|
|
<font>
|
|
<Font name="Arial" size="28.0" />
|
|
</font>
|
|
</Text>
|
|
<ImageView fitHeight="75.0" fitWidth="82.0" layoutX="14.0" layoutY="68.0">
|
|
<image>
|
|
<Image url="@../../Public/icon/iconalert.png" />
|
|
</image>
|
|
</ImageView>
|
|
</children>
|
|
</Pane>
|
|
<Button fx:id="Annuler" layoutX="406.0" layoutY="187.0" mnemonicParsing="false" prefHeight="28.0" prefWidth="73.0" styleClass="btn-default" text="Annuler" />
|
|
<Button fx:id="Valider" layoutX="304.0" layoutY="187.0" mnemonicParsing="false" prefHeight="28.0" prefWidth="73.0" text="Valider" />
|
|
</children>
|
|
</Group>
|
|
</children>
|
|
</StackPane>
|
|
</children>
|
|
</AnchorPane>
|