12 lines
592 B
XML
12 lines
592 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<AnchorPane 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">
|
|
<children>
|
|
<Button fx:id="button1" layoutX="77.0" layoutY="108.0" mnemonicParsing="false" text="Button"/>
|
|
<Button fx:id="button2" layoutX="171.0" layoutY="107.0" mnemonicParsing="false" text="Button"/>
|
|
</children>
|
|
</AnchorPane>
|