-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.fxml
More file actions
85 lines (83 loc) · 4.19 KB
/
Copy pathAbout.fxml
File metadata and controls
85 lines (83 loc) · 4.19 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
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ButtonBar?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.layout.VBox?>
<AnchorPane fx:id="about_ap" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="wf.view.AboutController">
<children>
<VBox fx:id="about_vb" spacing="10.0" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="10.0" AnchorPane.topAnchor="5.0">
<children>
<AnchorPane fx:id="top_ap">
<children>
<Label fx:id="title_lb" text="About" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="5.0">
<padding>
<Insets left="10.0" />
</padding></Label>
</children>
<VBox.margin>
<Insets />
</VBox.margin>
</AnchorPane>
<Separator fx:id="north_sp" />
<HBox fx:id="about_hb">
<children>
<StackPane fx:id="left_sp">
<HBox.margin>
<Insets right="10.0" />
</HBox.margin></StackPane>
<StackPane fx:id="right_sp">
<HBox.margin>
<Insets left="10.0" />
</HBox.margin>
<children>
<GridPane fx:id="info_gp" hgap="10.0" vgap="10.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="80.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="120.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
<children>
<Label fx:id="developer_lb" text="Developer" />
<Label fx:id="developerValue_lb" text="Fabio Schirru" GridPane.columnIndex="1" />
<Label fx:id="version_lb" text="Version" GridPane.rowIndex="1" />
<Label fx:id="versionValue_lb" text="1.0" GridPane.columnIndex="1" GridPane.rowIndex="1" />
<Label fx:id="contact_lb" text="Contact" GridPane.rowIndex="2" />
<Label fx:id="contactValue_lb" text="f.schirrugsi.de" GridPane.columnIndex="1" GridPane.rowIndex="2" />
</children>
</GridPane>
</children>
</StackPane>
</children>
<VBox.margin>
<Insets />
</VBox.margin>
<padding>
<Insets left="10.0" right="10.0" />
</padding>
</HBox>
<Separator fx:id="south_sp" />
<AnchorPane fx:id="bottom_ap" nodeOrientation="RIGHT_TO_LEFT">
<children>
<ButtonBar fx:id="bar_bb" nodeOrientation="LEFT_TO_RIGHT">
<buttons>
<Button fx:id="close_bt" contentDisplay="RIGHT" mnemonicParsing="false" onAction="#exitAction" prefWidth="140.0" text="Close" />
</buttons>
</ButtonBar>
</children>
</AnchorPane>
</children>
</VBox>
</children>
</AnchorPane>