-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirstPrompt.fxml
25 lines (23 loc) · 1003 Bytes
/
firstPrompt.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.Scene?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<Scene xmlns="http://javafx.com/javafx/20.0.1" xmlns:fx="http://javafx.com/fxml/1">
<AnchorPane prefHeight="160.0" prefWidth="310.0">
<children>
<VBox prefHeight="158.0" prefWidth="310.0">
<children>
<Label alignment="CENTER" prefHeight="43.0" prefWidth="344.0" text="Open or create file:">
<font>
<Font size="24.0" />
</font>
</Label>
<Button mnemonicParsing="false" prefHeight="49.0" prefWidth="316.0" text="Open File" />
<Button mnemonicParsing="false" prefHeight="48.0" prefWidth="312.0" text="Create file" />
</children>
</VBox>
</children></AnchorPane>
</Scene>