34 lines
1.4 KiB
Plaintext
34 lines
1.4 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<?import javafx.geometry.*?>
|
||
|
<?import java.lang.*?>
|
||
|
<?import java.util.*?>
|
||
|
<?import javafx.scene.*?>
|
||
|
<?import javafx.scene.control.*?>
|
||
|
<?import javafx.scene.layout.*?>
|
||
|
|
||
|
<SplitPane dividerPositions="0.8894472361809045" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" orientation="VERTICAL" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="circlegenerator.FXMLDocumentController">
|
||
|
<items>
|
||
|
<Pane fx:id="zPane" prefHeight="200.0" prefWidth="200.0" />
|
||
|
<HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0">
|
||
|
<children>
|
||
|
<Button fx:id="createBTN" mnemonicParsing="false" onAction="#handleCreate" text="Create">
|
||
|
<HBox.margin>
|
||
|
<Insets />
|
||
|
</HBox.margin>
|
||
|
</Button>
|
||
|
<Button fx:id="clearBTN" mnemonicParsing="false" onAction="#handleClearBTN" text="Clear">
|
||
|
<HBox.margin>
|
||
|
<Insets left="10.0" />
|
||
|
</HBox.margin>
|
||
|
</Button>
|
||
|
<CheckBox fx:id="filledCB" mnemonicParsing="false" text="Filled">
|
||
|
<HBox.margin>
|
||
|
<Insets left="10.0" />
|
||
|
</HBox.margin>
|
||
|
</CheckBox>
|
||
|
</children>
|
||
|
</HBox>
|
||
|
</items>
|
||
|
</SplitPane>
|