implement App-view.fxml

This commit is contained in:
2026-05-25 01:29:57 +03:30
parent 70830ac116
commit 7b217a61e1
+35 -2
View File
@@ -1,8 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.VBox?> <?import javafx.scene.layout.VBox?>
<VBox xmlns="http://javafx.com/fxml" alignment="CENTER" spacing="10"> <?import javafx.scene.layout.HBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Button?>
<!-- TODO: Add your code here! --> <VBox xmlns:fx="http://javafx.com/fxml" alignment="TOP_LEFT" spacing="12" fx:controller="sbu.javafx.MusicController" styleClass="root-pane">
<HBox spacing="30" alignment="CENTER_LEFT" styleClass="header-row">
<Label fx:id="TrackLable" text="Track" styleClass="header-label"/>
<Button fx:id="PlayListButton" text="Playlist" onAction="#openPlaylistWindow" styleClass="primary-button"/>
</HBox>
<HBox spacing="10" alignment="CENTER_LEFT" styleClass="song-row">
<Label fx:id="Name1" text="Song of Dawn" styleClass="song-title"/>
<Label fx:id="Singer1" text="Alice Johnson" styleClass="song-artist"/>
<Label fx:id="Duration1" text="03:45" styleClass="song-duration"/>
<Button fx:id="play1" text="Play" onAction="#handlePlayAction" styleClass="play-button"/>
<Button fx:id="AddToPlaylist1" text="Add to Playlist" onAction="#addToPlaylist" styleClass="secondary-button"/>
</HBox>
<HBox spacing="10" alignment="CENTER_LEFT" styleClass="song-row">
<Label fx:id="Name2" text="Echoes of You" styleClass="song-title"/>
<Label fx:id="Singer2" text="Luna Sky" styleClass="song-artist"/>
<Label fx:id="Duration2" text="05:08" styleClass="song-duration"/>
<Button fx:id="play2" text="Play" onAction="#handlePlayAction" styleClass="play-button"/>
<Button fx:id="AddToPlaylist2" text="Add to Playlist" onAction="#addToPlaylist" styleClass="secondary-button"/>
</HBox>
<HBox spacing="10" alignment="CENTER_LEFT" styleClass="song-row">
<Label fx:id="Name3" text="Midnight Drive" styleClass="song-title"/>
<Label fx:id="Singer3" text="The Night Owls" styleClass="song-artist"/>
<Label fx:id="Duration3" text="04:12" styleClass="song-duration"/>
<Button fx:id="play3" text="Play" onAction="#handlePlayAction" styleClass="play-button"/>
<Button fx:id="AddToPlaylist3" text="Add to Playlist" onAction="#addToPlaylist" styleClass="secondary-button"/>
</HBox>
</VBox> </VBox>