Develop #1

Merged
Sadra3st merged 9 commits from develop into main 2026-06-10 05:23:24 +00:00
Showing only changes of commit ae8efc62f0 - Show all commits
@@ -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>