forked from AdvancedProgramming1404/HW-07-JavaFX
26 lines
864 B
XML
26 lines
864 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<BorderPane xmlns="http://javafx.com/javafx/21"
|
|
xmlns:fx="http://javafx.com/fxml/1"
|
|
fx:controller="sbu.javafx.PlaylistController"
|
|
stylesheets="@spotify.css">
|
|
|
|
<top>
|
|
<HBox styleClass="header" spacing="10" alignment="CENTER_LEFT">
|
|
<Button text="← Back" styleClass="btn-ghost" onAction="#goBack"/>
|
|
<Label text="Playlist" styleClass="h1"/>
|
|
</HBox>
|
|
</top>
|
|
|
|
<center>
|
|
<VBox spacing="12" style="-fx-padding: 18;">
|
|
<ListView fx:id="playlistListView" VBox.vgrow="ALWAYS"/>
|
|
<HBox alignment="CENTER_RIGHT">
|
|
<Button text="Remove Selected" onAction="#removeSelected"/>
|
|
</HBox>
|
|
</VBox>
|
|
</center>
|
|
</BorderPane> |