New version update with UI and UX overhauled. Added mplayer launching to video thumbnail images too. Fixed some loading issues and file type checks too.

This commit is contained in:
Maxim Stewart
2016-10-22 22:21:10 -05:00
parent 3c61f0b890
commit 0f0980d337
45 changed files with 835 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
public class XWWMenu extends Application {
@Override
public void start(Stage stage) throws Exception {
Scene scene = new Scene(FXMLLoader.load(XWWMenu.class.getResource("resources/Window.fxml")));
scene.getStylesheets().add("resources/stylesheet.css");
stage.setScene(scene);
stage.setTitle("XWinWrap Menu");
stage.setResizable(false);
stage.show();
}
public static void main(String[] args) { launch(args); }
}