summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/java2/aufgabe02/MainWindow.fxml
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/fhswf/in/inf/java2/aufgabe02/MainWindow.fxml')
-rw-r--r--src/de/fhswf/in/inf/java2/aufgabe02/MainWindow.fxml21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/de/fhswf/in/inf/java2/aufgabe02/MainWindow.fxml b/src/de/fhswf/in/inf/java2/aufgabe02/MainWindow.fxml
new file mode 100644
index 0000000..df4e650
--- /dev/null
+++ b/src/de/fhswf/in/inf/java2/aufgabe02/MainWindow.fxml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.control.*?>
+<?import java.lang.*?>
+<?import javafx.scene.layout.*?>
+<?import javafx.scene.layout.BorderPane?>
+
+<BorderPane xmlns="http://javafx.com/javafx/8.0.40" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.fhswf.in.inf.java2.aufgabe02.MainWindow">
+ <left>
+ <VBox BorderPane.alignment="CENTER">
+ <children>
+ <Button fx:id="button1" mnemonicParsing="false" text="Button 1" />
+ <Button fx:id="button2" mnemonicParsing="false" text="Button 2" />
+ <Button fx:id="button3" mnemonicParsing="false" text="Button 3" />
+ </children>
+ </VBox>
+ </left>
+ <center>
+ <StackPane fx:id="sPane" prefHeight="150.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
+ </center>
+</BorderPane>