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.

37 lines
921 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.*?>
<VBox xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
prefHeight="400.0" prefWidth="600.0">
<HBox>
<Label text="Nom : "/>
<TextField fx:id="nomParfum"/>
</HBox>
<HBox>
<Label text="Prix : "/>
<TextField fx:id="prixParfum"/>
</HBox>
<VBox>
<HBox>
<Label text="Fragrance : "/>
<TextField fx:id="fragranceParfum"/>
<Button onAction="#ajouterFragrance" text="Ajouter fragrance"/>
</HBox>
<Label fx:id="fragrancesAjoutees"/>
</VBox>
<HBox>
<Button text="Ajouter parfum" onAction="#ajouterParfum"/>
<Button text="Annuler" onAction="#annuler"/>
</HBox>
</VBox>