-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomsGUI.fxml
More file actions
37 lines (34 loc) · 2.04 KB
/
customsGUI.fxml
File metadata and controls
37 lines (34 loc) · 2.04 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
<?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.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" style="-fx-background-color: #fafafa;" xmlns="http://javafx.com/javafx/25" xmlns:fx="http://javafx.com/fxml/1" fx:controller="hsCodes.CustomsTariffValidator">
<children>
<VBox alignment="CENTER" layoutX="2.0" layoutY="1.0" prefHeight="390.0" prefWidth="591.0" spacing="35.0" style="-fx-background-color: #f0f0f0;">
<children>
<TextField fx:id="tfTarifnummer" alignment="CENTER" maxHeight="-Infinity" maxWidth="-Infinity" prefWidth="350.0" promptText="z.B. 84713000" style="-fx-background-radius: 15; -fx-border-radius: 15; -fx-border-color: #003366; -fx-border-width: 1;" VBox.vgrow="NEVER">
<font>
<Font size="14.0" />
</font>
</TextField>
<Button mnemonicParsing="false" onAction="#handleCheckAction" style="-fx-background-color: #003366; -fx-text-fill: white; -fx-background-radius: 15; -fx-cursor: hand;" text="Code validieren" textFill="#f2f0f0">
<font>
<Font size="14.0" />
</font>
</Button>
<Label fx:id="lblErgebnis" alignment="TOP_CENTER" prefWidth="350.0" style="-fx-background-color: #ffffff; -fx-border-color: #dcdcdc; -fx-border-radius: 15; -fx-padding: 5; -fx-background-radius: 15; -fx-text-fill: gray;" text="Warte auf Eingabe.." textAlignment="CENTER" wrapText="true" VBox.vgrow="NEVER">
<font>
<Font size="18.0" />
</font>
</Label>
</children>
</VBox>
</children>
<padding>
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
</padding>
</AnchorPane>