Added code and resources.
This commit is contained in:
18
src/v0.0.1/XWWMenu.java
Normal file
18
src/v0.0.1/XWWMenu.java
Normal 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); }
|
||||
}
|
||||
Reference in New Issue
Block a user