-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #233 - Add UI elements for adding, removing, and editing jobs t…
…o MainWindow (#234)
- Loading branch information
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
12 changes: 11 additions & 1 deletion
12
desktop/src/main/resources/com/manorrock/sphynx/desktop/primary.fxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.ButtonBar?> | ||
<?import javafx.scene.control.ListView?> | ||
<?import javafx.scene.layout.BorderPane?> | ||
|
||
|
||
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/20.0.1" xmlns:fx="http://javafx.com/fxml/1"> | ||
<center> | ||
<ListView prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" /> | ||
</center> | ||
<top> | ||
<ButtonBar prefHeight="40.0" prefWidth="200.0" BorderPane.alignment="CENTER"> | ||
<buttons> | ||
<Button mnemonicParsing="false" text="Delete" /> | ||
<Button mnemonicParsing="false" text="Edit" /> | ||
<Button mnemonicParsing="false" text="Add" /> | ||
</buttons> | ||
</ButtonBar> | ||
</top> | ||
</BorderPane> |