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.
24 lines
956 B
24 lines
956 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
<?import javafx.scene.text.Text?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
|
|
<BorderPane xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="view.Fenetre">
|
|
<top>
|
|
<Text fx:id="topText" text="Fight de Cedric et Jerome" BorderPane.alignment="CENTER" />
|
|
</top>
|
|
<center>
|
|
<HBox spacing="10" alignment="CENTER">
|
|
<Button fx:id="buttonHold" mnemonicParsing="false" text="Hold" onAction="#onButtonHoldClicked" />
|
|
<ImageView fx:id="diceImage" fitHeight="150.0" fitWidth="150.0" preserveRatio="true" />
|
|
<Button fx:id="buttonRoll" mnemonicParsing="false" text="Roll" onAction="#onButtonRollClicked"/>
|
|
</HBox>
|
|
</center>
|
|
<bottom>
|
|
<Text fx:id="bottomText" BorderPane.alignment="CENTER" />
|
|
</bottom>
|
|
</BorderPane>
|