hanze/game-client

src/main/resources/nl/isygameclient/views/game_selector/GameCard.fxml in tournament
Repositories | Summary | Log | Files

GameCard.fxml (826B) download


 1<?xml version="1.0" encoding="UTF-8"?>
 2
 3<?import java.lang.*?>
 4<?import javafx.scene.control.*?>
 5<?import javafx.scene.image.*?>
 6<?import javafx.scene.layout.*?>
 7
 8<VBox prefHeight="350.0" prefWidth="250.0" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1"
 9      alignment="CENTER" fx:controller="nl.isygameclient.controllers.game_selector.GameCardController" onMouseClicked="#onCardMouseClick">
10    <styleClass>
11        <String fx:value="surface"/>
12    </styleClass>
13    <AnchorPane>
14        <ImageView fx:id="gameImage" fitWidth="250.0" preserveRatio="true"/>
15    </AnchorPane>
16    <Separator/>
17    <Label fx:id="gameTitle" alignment="TOP_RIGHT" text="Title">
18    <styleClass>
19        <String fx:value="title-medium"/>
20        <String fx:value="on-surface-text"/>
21    </styleClass>
22    </Label>
23</VBox>