add Playlist.fxml
This commit is contained in:
@@ -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>
|
||||||
Reference in New Issue
Block a user