Files
PowerPME_maven/target/classes/Views/Dialog/DialogSuccess.fxml
2025-10-30 13:23:53 +01:00

62 lines
3.5 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/22" 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 succés d'enregistement">
<font>
<Font name="Arial Bold" size="13.0" />
</font>
</Text>
</children>
</Pane>
<Button fx:id="Valider" layoutX="189.0" layoutY="159.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="122.0" styleClass="btn-success" text="Valider">
<font>
<Font name="Arial" size="22.0" />
</font></Button>
<TextFlow layoutX="120.0" layoutY="105.0" prefHeight="48.0" prefWidth="342.0" textAlignment="JUSTIFY">
<children>
<Text fx:id="Message" strokeType="OUTSIDE" strokeWidth="0.0" text="L'enregistrement a été effectuée avec succès" wrappingWidth="385.0546875">
<font>
<Font name="Arial" size="16.0" />
</font>
</Text>
</children>
</TextFlow>
<ImageView fitHeight="69.0" fitWidth="72.0" layoutX="14.0" layoutY="80.0">
<image>
<Image url="@../../Public/icon/successfully.png" />
</image>
</ImageView>
<Text layoutX="120.0" layoutY="81.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Succés">
<font>
<Font name="Arial" size="28.0" />
</font>
</Text>
</children>
</Pane>
</children>
</Group>
</children>
</StackPane>
</children>
</AnchorPane>