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.

27 lines
722 B

<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.shape.Rectangle?>
<?import javafx.geometry.Insets?>
<fx:root type="BorderPane" xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml">
<left>
<Label fx:id="labelEtat" prefWidth="20" prefHeight="20"/>
</left>
<center>
<VBox>
<padding>
<Insets left="10"/>
</padding>
<Label fx:id="nomOiseau"/>
<Button fx:id="nourrirOiseau" onAction="#nourrirOiseau" text="Nourrir"/>
</VBox>
</center>
</fx:root>