-
Notifications
You must be signed in to change notification settings - Fork 0
/
HBoxTemplate.fxml
14 lines (12 loc) · 952 Bytes
/
HBoxTemplate.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.HBox?>
<HBox fx:id="jab" prefHeight="90.0" prefWidth="200.0" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bham.fsd.assignments.jabberserver.HBoxController">
<children>
<Label fx:id="UN" alignment="CENTER" prefHeight="90.0" prefWidth="100.0" text="empty" textAlignment="CENTER" underline="true" wrapText="true" />
<Label fx:id="JT" prefHeight="90.0" prefWidth="140.0" text="empty" wrapText="true" />
<ImageView fx:id="imgH" fitHeight="90.0" fitWidth="30.0" onMouseClicked="#liked" pickOnBounds="true" preserveRatio="true" />
<Label fx:id="likeNum" alignment="TOP_RIGHT" prefHeight="90.0" prefWidth="30.0" text="empty" wrapText="true" />
</children>
</HBox>