This commit is contained in:
Jonas Hinterdorfer 2025-05-13 12:25:06 +02:00
parent 14962172f9
commit 0e82bc231a

View File

@ -6,7 +6,6 @@
xmlns:fx="http://javafx.com/fxml"
prefWidth="600.0" prefHeight="400.0"
fx:controller="at.ionas999.questioncatalog.controller.TestController">
<children>
<VBox spacing="20" alignment="CENTER" AnchorPane.topAnchor="10.0" AnchorPane.leftAnchor="10.0"
AnchorPane.rightAnchor="10.0">
<!-- Start Test Button -->
@ -16,7 +15,7 @@
<Label text="Number of Questions:"/>
<TextField fx:id="questionCountField" promptText="Enter amount"/>
<Slider fx:id="questionSlider" min="1" max="10" showTickLabels="true" showTickMarks="true"/>
<ComboBox fx:id="catalogComboBox" promptText="Choose a catalog" />
<ComboBox fx:id="catalogComboBox" promptText="Choose a catalog"/>
</HBox>
<!-- Question Display -->
@ -43,5 +42,4 @@
</VBox>
<Button text="Back to Main Page" onAction="#onBackToMainPageClick"
AnchorPane.bottomAnchor="10.0" AnchorPane.rightAnchor="10.0"/>
</children>
</AnchorPane>