23 lines
601 B
XML
23 lines
601 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Separator?>
|
|
<VBox xmlns:fx="http://javafx.com/fxml" alignment="CENTER" spacing="30" fx:controller="sbu.javafx.PlaylistController">
|
|
<padding><Insets top="30" right="30" left="30" bottom="20"/></padding>
|
|
|
|
<VBox spacing="5">
|
|
<Label text="My play list" styleClass="title"/>
|
|
<Separator/>
|
|
<Label fx:id="PL1" />
|
|
<Label fx:id="PL2" />
|
|
<Label fx:id="PL3" />
|
|
</VBox>
|
|
|
|
|
|
|
|
|
|
|
|
</VBox> |