-
Notifications
You must be signed in to change notification settings - Fork 0
/
TaxScene.fxml
70 lines (67 loc) · 2.67 KB
/
TaxScene.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuBar?>
<?import javafx.scene.control.MenuItem?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane id="AnchorPane" prefHeight="504.0" prefWidth="888.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.171" fx:controller="mainpkg.TaxSceneController">
<children>
<MenuBar layoutY="-2.0">
<menus>
<Menu mnemonicParsing="false" text="File">
<items>
<MenuItem mnemonicParsing="false" text="Close" />
</items>
</Menu>
<Menu mnemonicParsing="false" text="Edit">
<items>
<MenuItem mnemonicParsing="false" text="Delete" />
</items>
</Menu>
<Menu mnemonicParsing="false" text="Help">
<items>
<MenuItem mnemonicParsing="false" text="About" />
</items>
</Menu>
</menus>
</MenuBar>
<TextField layoutX="14.0" layoutY="59.0" text="Tax value:">
<font>
<Font name="System Bold" size="15.0" />
</font>
</TextField>
<TextField layoutX="14.0" layoutY="111.0" text="Tax Return:">
<font>
<Font name="System Bold" size="15.0" />
</font>
</TextField>
<Button layoutX="14.0" layoutY="291.0" mnemonicParsing="false" prefHeight="32.0" prefWidth="199.0" text="Corporate Tax Return">
<font>
<Font name="System Bold" size="15.0" />
</font>
</Button>
<Button layoutX="14.0" layoutY="395.0" mnemonicParsing="false" prefHeight="31.0" prefWidth="199.0" text="Tax Calculation">
<font>
<Font name="System Bold" size="15.0" />
</font>
</Button>
<Button layoutX="14.0" layoutY="202.0" mnemonicParsing="false" prefHeight="31.0" prefWidth="199.0" text="Save">
<font>
<Font name="System Bold" size="15.0" />
</font>
</Button>
<Button layoutX="329.0" layoutY="59.0" mnemonicParsing="false" prefHeight="31.0" prefWidth="453.0" text="Click to view tax information">
<font>
<Font name="System Bold" size="15.0" />
</font>
</Button>
<TextField layoutX="304.0" layoutY="155.0" prefHeight="287.0" prefWidth="553.0" />
<Button layoutX="741.0" layoutY="459.0" mnemonicParsing="false" prefHeight="31.0" prefWidth="120.0" text="Next">
<font>
<Font name="System Bold" size="15.0" />
</font>
</Button>
</children>
</AnchorPane>