Skip to content
Snippets Groups Projects

Revert "Merge branch 'fxDemo' into 'master'"

Merged Daniel requested to merge revert-a30e4f4d into master
4 files
+ 11
71
Compare changes
  • Side-by-side
  • Inline
Files
4
package fxDemo;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import java.io.IOException;
/**
* @author daniel.thomas
* @since 11.06.2017
*/
public class VellemanDemoApp extends Application{
public static void main(String[] args){
launch(args);
}
public BorderPane mainPane;
public void start(Stage stage) throws IOException{
mainPane = new BorderPane();
FXMLLoader loader = new FXMLLoader(getClass().getResource("/fxDemo/layout/VellemanDemoApp_layout.fxml"));
StackPane stackPane = (StackPane) loader.load();
stage.setScene(new Scene(stackPane));
stage.show();
}
}
Loading