16 lines
755 B
Plaintext
16 lines
755 B
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.*?>
|
||
|
|
||
|
<AnchorPane id="AnchorPane" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="multiplewindows.FXML1Controller">
|
||
|
<children>
|
||
|
<Label fx:id="lblTest" layoutX="260.0" layoutY="200.0" text="Das ist ein Test" />
|
||
|
<Button fx:id="btnButton" layoutX="200.0" layoutY="137.0" mnemonicParsing="false" onAction="#handleButton" text="Drücken" />
|
||
|
<Button fx:id="btnNew" layoutX="340.0" layoutY="137.0" mnemonicParsing="false" onAction="#handleNew" text="New" />
|
||
|
</children>
|
||
|
</AnchorPane>
|