31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
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.*?>
|
||
|
|
||
|
<BorderPane xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="unicodeemojitest.FXMLDocumentController">
|
||
|
<center>
|
||
|
<Label fx:id="label" minHeight="16" minWidth="69" BorderPane.alignment="CENTER" />
|
||
|
</center>
|
||
|
<top>
|
||
|
<GridPane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" BorderPane.alignment="CENTER">
|
||
|
<children>
|
||
|
<Button fx:id="button" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" onAction="#handleButtonAction" text="Click Me!">
|
||
|
<graphic>
|
||
|
<ChoiceBox fx:id="cbSmlieys" prefWidth="150.0" />
|
||
|
</graphic>
|
||
|
</Button>
|
||
|
</children>
|
||
|
<columnConstraints>
|
||
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" />
|
||
|
</columnConstraints>
|
||
|
<rowConstraints>
|
||
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||
|
</rowConstraints>
|
||
|
</GridPane>
|
||
|
</top>
|
||
|
</BorderPane>
|