Files
HW-07-JavaFX/src/main/java/sbu/javafx/MusicApp.java
T
2026-07-17 10:37:17 +03:30

27 lines
699 B
Java

package sbu.javafx;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import java.io.IOException;
public class MusicApp extends Application {
@Override
public void start(Stage stage) throws IOException
{
FXMLLoader fxmlLoader = new FXMLLoader(MusicApp.class.getResource("App-view.fxml"));
Scene scene = new Scene(fxmlLoader.load());
stage.setTitle("Music Player");
stage.setScene(scene);
scene.getStylesheets().add(
MusicApp.class.getResource("style.css").toExternalForm()
);
//TODO: add icon to the stage
stage.show();
}
}