Skip to content
Snippets Groups Projects
Commit c3ec27ba authored by KALLEL Mohamed ali's avatar KALLEL Mohamed ali
Browse files

task 1

parent 3888a3e7
No related branches found
No related tags found
No related merge requests found
Pipeline #25792 passed
File added
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Spinner?>
<?import javafx.scene.layout.GridPane?>
<GridPane xmlns:fx="http://javafx.com/fxml"
fx:controller="controller.SettingsController" alignment="center" hgap="10" vgap="10" padding="20">
<Label text="Settings" style="-fx-font-size: 16;" GridPane.columnIndex="0" GridPane.rowIndex="0" GridPane.columnSpan="2"/>
<!-- Row Count -->
<Label text="Row Count:" GridPane.columnIndex="0" GridPane.rowIndex="1"/>
<Spinner fx:id="rowCountSpinner" value="10" min="1" max="100" GridPane.columnIndex="1" GridPane.rowIndex="1"/>
<!-- Column Count -->
<Label text="Column Count:" GridPane.columnIndex="0" GridPane.rowIndex="2"/>
<Spinner fx:id="columnCountSpinner" value="10" min="1" max="100" GridPane.columnIndex="1" GridPane.rowIndex="2"/>
</GridPane>
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment