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:
19
src/versions/v0.0.2/XWWMenu.java
Normal file
19
src/versions/v0.0.2/XWWMenu.java
Normal 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); }
|
||||
}
|
||||
Reference in New Issue
Block a user