-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.fxml
More file actions
80 lines (78 loc) · 4.09 KB
/
Copy pathMain.fxml
File metadata and controls
80 lines (78 loc) · 4.09 KB
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
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<AnchorPane fx:id="main_ap" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="wf.view.MainController">
<children>
<VBox AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="10.0" AnchorPane.topAnchor="5.0">
<children>
<AnchorPane fx:id="anchorPaneTop_ap">
<children>
<Label fx:id="title_lb" text="Label" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="5.0">
<padding>
<Insets left="10.0" />
</padding></Label>
</children>
</AnchorPane>
<Separator fx:id="hSeparatorNorth" prefWidth="200.0" />
<HBox fx:id="main_hb" spacing="10.0">
<children>
<VBox spacing="15.0">
<children>
<Button fx:id="monitor_bt" mnemonicParsing="false" onAction="#handleMonitor_bt" prefWidth="140.0" text="Button">
<VBox.margin>
<Insets top="10.0" />
</VBox.margin></Button>
<Button fx:id="process_bt" mnemonicParsing="false" onAction="#handleProcess_bt" prefWidth="140.0" text="Button">
<VBox.margin>
<Insets />
</VBox.margin></Button>
<Button fx:id="calculate_bt" mnemonicParsing="false" onAction="#handleCalculate_bt" prefWidth="140.0" text="Button" />
<Button fx:id="table_bt" mnemonicParsing="false" onAction="#handleTable_bt" prefWidth="140.0" text="Button">
<VBox.margin>
<Insets />
</VBox.margin>
</Button>
<Button fx:id="graphs_bt" mnemonicParsing="false" onAction="#handleGraphs_bt" prefWidth="140.0" text="Button" />
<Button fx:id="services_bt" mnemonicParsing="false" onAction="#handleServices_bt" prefWidth="140.0" text="Button">
<VBox.margin>
<Insets />
</VBox.margin></Button>
<Button fx:id="about_bt" mnemonicParsing="false" onAction="#handleAbout_bt" prefWidth="140.0" text="Button">
<VBox.margin>
<Insets />
</VBox.margin></Button>
<Button fx:id="exit_bt" mnemonicParsing="false" onAction="#handleExit_bt" prefWidth="140.0" text="Button">
<VBox.margin>
<Insets bottom="10.0" />
</VBox.margin></Button>
</children>
<HBox.margin>
<Insets left="10.0" />
</HBox.margin>
</VBox>
<!-- <Separator fx:id="hSeparator" orientation="VERTICAL" prefHeight="200.0" /> -->
<TextArea fx:id="info_ta" prefWidth="500.0">
<HBox.margin>
<Insets bottom="10.0" right="10.0" top="10.0" />
</HBox.margin></TextArea>
</children>
<VBox.margin>
<Insets />
</VBox.margin>
</HBox>
<Separator fx:id="hSeparatorSouth" prefWidth="200.0" />
<AnchorPane fx:id="anchorPaneBot_ap">
<children>
<Label fx:id="info_lb" AnchorPane.bottomAnchor="5.0" AnchorPane.topAnchor="5.0" />
</children>
</AnchorPane>
</children>
</VBox>
</children>
</AnchorPane>