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.
32 lines
946 B
32 lines
946 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.*?>
|
|
|
|
<BorderPane xmlns="http://javafx.com/javafx"
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
fx:controller="vues.AjouterOiseau"
|
|
prefHeight="400.0" prefWidth="600.0">
|
|
<center>
|
|
<VBox>
|
|
<HBox>
|
|
<Label text="Nom de l'oiseau : "/>
|
|
<TextField fx:id="nomOiseau"/>
|
|
</HBox>
|
|
<HBox>
|
|
<Label text="Age de l'oiseau : "/>
|
|
<Spinner fx:id="ageOiseau"/>
|
|
</HBox>
|
|
<HBox>
|
|
<Label text="Couleur de son plumage : "/>
|
|
<TextField fx:id="couleurOiseau"/>
|
|
</HBox>
|
|
<Button text="Ajouter" fx:id="boutonAjouter" onAction="#ajouterOiseau"/>
|
|
</VBox>
|
|
</center>
|
|
|
|
</BorderPane>
|