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.

29 lines
842 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.text.Text?>
<BorderPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="view.MainWindow"
prefHeight="400.0" prefWidth="600.0">
<left>
<VBox alignment="CENTER">
<ComboBox/>
<ListView fx:id="listeProduit"/>
<Button text="Ajouter habit" onAction="#lancerFenetreAjoutHabit"/>
<Button text="Ajouter parfum" onAction="#lancerFenetreAjoutParfum"/>
<Button text="Supprimer l'objet sélectionné"/>
</VBox>
</left>
<center>
<VBox fx:id="layoutDetail"/>
</center>
</BorderPane>