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.

32 lines
1004 B

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ColorPicker?>
<AnchorPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml">
<VBox>
<HBox>
<Label text="LAST NAME"/>
<TextField fx:id="lastnameTF"/>
</HBox>
<HBox>
<Label text="first name"/>
<TextField fx:id="firstnameTF"/>
</HBox>
<HBox>
<Label text="hair color"/>
<ColorPicker fx:id="hairColorPicker"/>
</HBox>
<HBox>
<Button text="OK" onAction="#clickCreate" disable="${lastnameTF.text.empty || firstnameTF.text.empty}"/>
<Button text="Cancel" onAction="#clickCancel"/>
</HBox>
</VBox>
</AnchorPane>