Added code and resources.

This commit is contained in:
Maxim Stewart
2016-07-18 18:01:43 -05:00
parent d51354706c
commit 4e5cec4615
9 changed files with 356 additions and 0 deletions

18
src/v0.0.1/XWWMenu.java Normal file
View File

@@ -0,0 +1,18 @@
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")));
stage.setScene(scene);
stage.setTitle("XWinWrap Menu");
stage.setResizable(false);
stage.show();
}
public static void main(String[] args) { launch(args); }
}