M431-ShadowHunterGame/src/ihm/ressources/afficher_carte_perso.fxml
2020-04-27 18:15:24 +02:00

57 lines
2.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.AfficherCarteController">
<children>
<VBox fx:id="root" alignment="CENTER" layoutY="-1.0" prefHeight="480.0" prefWidth="640.0">
<children>
<Label text="Vous êtes :">
<font>
<Font size="24.0" />
</font>
</Label>
<HBox alignment="CENTER" prefHeight="231.0" prefWidth="600.0">
<children>
<ImageView fitHeight="326.0" fitWidth="233.5" pickOnBounds="true" preserveRatio="true" />
<VBox alignment="CENTER" prefHeight="326.0" prefWidth="319.0">
<children>
<Label fx:id="nom" text="%nom.personnages">
<font>
<Font size="18.0" />
</font>
</Label>
<Label text="%votre.competence">
<font>
<Font size="18.0" />
</font>
</Label>
<Label fx:id="competence" text="Text compétance">
<font>
<Font size="18.0" />
</font>
</Label>
<Button mnemonicParsing="false" onMouseClicked="#voirCarte" text="%retourner.carte">
<VBox.margin>
<Insets top="50.0" />
</VBox.margin>
<font>
<Font size="18.0" />
</font>
</Button>
</children>
</VBox>
</children>
</HBox>
</children>
</VBox>
</children>
</Pane>