forked from AdvancedProgramming1404/HW-07-JavaFX
develop
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user