jfxui/src/main/resources/fr/alnotz/view/mainView.fxml
2023-07-08 19:09:36 +02:00

18 lines
479 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Button?>
<VBox xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="fr.alnotz.control.MainControl"
prefHeight="400.0" prefWidth="600.0">
<Label fx:id="mainLabel"/>
<Button fx:id="mainButton"
text="Click _here!"
onAction="#onClick">
</Button>
</VBox>