add Playlist.fxml

This commit is contained in:
2026-05-27 11:32:02 -07:00
parent e51de99ebe
commit ae8efc62f0
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.control.TableColumn?>
<VBox xmlns:fx="http://javafx.com/fxml" alignment="CENTER" spacing="10" fx:controller="sbu.javafx.PlaylistController" >
<Label text="Playlist" styleClass="title"/>
<TableView fx:id="playListTable">
<columns>
<TableColumn fx:id="titleCol" text="Song Name" prefWidth="150" />
<TableColumn fx:id="artistCol" text="Artist Name" prefWidth="150" />
<TableColumn fx:id="durationCol" text="Duration" prefWidth="100" />
</columns>
</TableView>
</VBox>