21 lines
1.4 KiB
Plaintext
21 lines
1.4 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<?import java.lang.*?>
|
||
|
<?import java.util.*?>
|
||
|
<?import javafx.scene.*?>
|
||
|
<?import javafx.scene.control.*?>
|
||
|
<?import javafx.scene.layout.*?>
|
||
|
|
||
|
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="moviedatabase.LayoutController">
|
||
|
<children>
|
||
|
<ListView fx:id="lvItems" layoutX="14.0" layoutY="36.0" onKeyPressed="#handleKeyPressedItems" onKeyReleased="#handleKeyPressedItems" onKeyTyped="#handleKeyPressedItems" onMouseClicked="#handleMouseClickedItems" prefHeight="352.0" prefWidth="172.0" />
|
||
|
<Label layoutX="81.0" layoutY="14.0" text="Sachen" />
|
||
|
<Label fx:id="lblOnStock" layoutX="205.0" layoutY="36.0" text="Auf lager: " />
|
||
|
<Label fx:id="lblKost" layoutX="205.0" layoutY="69.0" text="Kosten pro: " />
|
||
|
<Label fx:id="lblID" layoutX="205.0" layoutY="103.0" text="ID: " />
|
||
|
<Button fx:id="btnNew" layoutX="326.0" layoutY="233.0" mnemonicParsing="false" onAction="#handleNew" text="Neue Sache eintragen" />
|
||
|
<Button layoutX="188.0" layoutY="363.0" mnemonicParsing="false" onAction="#handleDelete" text="Entfernen" />
|
||
|
<CheckBox fx:id="cbRand" layoutX="465.0" layoutY="237.0" mnemonicParsing="false" text="Zufällige Sache" />
|
||
|
</children>
|
||
|
</Pane>
|