java-fx-samples/build/classes/trackcoursor/layout.fxml

18 lines
764 B
Plaintext
Raw Normal View History

2019-08-09 05:22:38 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.shape.*?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="trackcoursor.layoutController">
<children>
<Pane fx:id="canvas" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" onMouseClicked="#handleMouseClicked" onMouseMoved="#handleMouseMove" onScroll="#handleMouseScroll" prefHeight="400.0" prefWidth="600.0">
<children>
<Label fx:id="lblAddCount" layoutX="14.0" layoutY="14.0" text="1" />
</children></Pane>
</children>
</AnchorPane>