15 lines
633 B
Plaintext
15 lines
633 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="200" prefWidth="320" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8" fx:controller="changescene2.layout1Controller">
|
||
|
<children>
|
||
|
<Button fx:id="button" layoutX="126" layoutY="90" onAction="#handleButtonAction" onMouseEntered="#handleEnter" text="Click Me!" />
|
||
|
<Label fx:id="label" layoutX="126" layoutY="120" minHeight="16" minWidth="69" />
|
||
|
</children>
|
||
|
</AnchorPane>
|