You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.5 KiB

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.control.TreeView?>
<?import javafx.scene.control.Spinner?>
<?import javafx.scene.shape.Rectangle?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0"
prefWidth="459.0" xmlns="http://javafx.com/javafx/15.0.1" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.example.tp.HelloController">
<padding>
<Insets right="10.0"/>
</padding>
<TreeView fx:id="myListTreeView" layoutX="130.0" layoutY="100.0" prefHeight="200.0" prefWidth="200.0"
onMouseClicked="#selectItem"/>
<Label fx:id="myLabel" alignment="CENTER" layoutY="33.0" prefHeight="43.0" prefWidth="459.0" text="Select a Captor">
<font>
<Font size="29.0"/>
</font>
</Label>
<padding>
<Insets right="50.0"/>
</padding>
<Spinner fx:id="mySpinner" editable="true" layoutX="655.0" layoutY="188.0"/>
<Label fx:id="myLabel2" alignment="CENTER" layoutX="520.0" layoutY="97.0" prefHeight="45.0" prefWidth="459.0"
text="Label">
<font>
<Font size="30.0"/>
</font>
</Label>
<Rectangle fx:id="myRectangle" layoutX="520.0" layoutY="400.0" arcHeight="5.0" arcWidth="5.0" fill="blue" height="200.0" stroke="BLUE" strokeType="INSIDE" width="200"/>
</AnchorPane>