forked from UltronOne/MatheGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.fxml
More file actions
59 lines (57 loc) · 2.44 KB
/
Copy pathview.fxml
File metadata and controls
59 lines (57 loc) · 2.44 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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ProgressIndicator?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.text.Font?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" onKeyPressed="#keyPressed" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controller">
<top>
<AnchorPane BorderPane.alignment="CENTER">
<children>
<Label layoutX="37.0" prefHeight="67.0" prefWidth="573.0" text="Mathe!" textFill="RED">
<font>
<Font size="32.0" />
</font>
</Label>
<ProgressIndicator id="progressIndicator" fx:id="progressIndicator" layoutX="546.0" layoutY="14.0" progress="0.0" />
</children>
</AnchorPane>
</top>
<right>
<AnchorPane prefHeight="285.0" prefWidth="144.0" BorderPane.alignment="CENTER">
<children>
<Label fx:id="lblPunkte" layoutX="104.0" prefHeight="36.0" prefWidth="37.0" text="0">
<font>
<Font size="18.0" />
</font>
</Label>
<Label layoutX="14.0" layoutY="5.0" text="Punkte:">
<font>
<Font size="18.0" />
</font>
</Label>
</children>
</AnchorPane>
</right>
<center>
<StackPane fx:id="inhalt" BorderPane.alignment="CENTER" />
</center>
<bottom>
<AnchorPane onKeyPressed="#keyPressed" prefHeight="69.0" prefWidth="600.0" BorderPane.alignment="CENTER">
<children>
<Button fx:id="button" layoutX="499.0" layoutY="15.0" mnemonicParsing="false" onAction="#buttonGeklickt" text="Prüfen" AnchorPane.bottomAnchor="15.0" AnchorPane.rightAnchor="25.0">
<font>
<Font size="18.0" />
</font>
</Button>
<Label fx:id="lblErgebnis" layoutX="136.0" layoutY="17.0" prefHeight="17.0" prefWidth="192.0" text="Richtig / Falsch" AnchorPane.bottomAnchor="15.0" AnchorPane.leftAnchor="136.0">
<font>
<Font size="24.0" />
</font>
</Label>
</children>
</AnchorPane>
</bottom>
</BorderPane>