Newer
Older
KeeperJerry_Launcher / Launcher / runtime / dialog / profileCell.fxml
@sashok724 sashok724 on 20 Apr 2017 595 bytes фиксы
<?xml version="1.0" encoding="UTF-8"?>

<?import java.net.URL?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.shape.Circle?>

<HBox xmlns:fx="http://javafx.com/fxml/1" fx:id="cellBox">
    <stylesheets>
        <URL value="@profileCell.css" />
    </stylesheets>

    <!-- Left side -->
    <Label fx:id="profileTitle">
        <graphic><Circle radius="3.0" /></graphic>
    </Label>

    <!-- Separator -->
    <Pane HBox.hgrow="ALWAYS" />

    <!-- Right side -->
    <Label fx:id="serverStatus" />
</HBox>