Newer
Older
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
<?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.ScrollPane?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.layout.VBox?>
<BorderPane xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1">
<bottom>
<VBox BorderPane.alignment="CENTER">
<children>
<Label maxWidth="1000.0" />
<HBox />
<ButtonBar prefHeight="40.0" prefWidth="200.0">
<buttons>
<Button defaultButton="true" mnemonicParsing="false" text="OK" />
<Button cancelButton="true" mnemonicParsing="false" text="Cancel" />
</buttons>
<padding>
<Insets right="10.0" />
</padding>
</ButtonBar>
</children>
</VBox>
</bottom>
<center>
<ScrollPane fitToWidth="true" pannable="true" BorderPane.alignment="CENTER">
<content>
<GridPane hgap="10.0">
<columnConstraints>
<ColumnConstraints fillWidth="false" halignment="RIGHT" hgrow="NEVER" minWidth="10.0" />
<ColumnConstraints hgrow="ALWAYS" minWidth="10.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
</rowConstraints>
<children>
<Label text="ala" />
<Label text="aloitusvuosi" GridPane.rowIndex="1" />
<Label text="h/vko" GridPane.rowIndex="2" />
<TextField text="kalastus" GridPane.columnIndex="1" GridPane.hgrow="ALWAYS" />
<TextField text="1955" GridPane.columnIndex="1" GridPane.hgrow="ALWAYS" GridPane.rowIndex="1" />
<TextField text="20" GridPane.columnIndex="1" GridPane.hgrow="ALWAYS" GridPane.rowIndex="2" />
</children>
<opaqueInsets>
<Insets left="10.0" top="10.0" />
</opaqueInsets>
<padding>
<Insets left="10.0" right="10.0" top="10.0" />
</padding>
</GridPane>
</content>
</ScrollPane>
</center>
</BorderPane>