You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
667 B
Java

package de.thm.tlf.photoViewer;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.GridPane;
import javafx.stage.Stage;
/**
* Controller Class for Image-viewer.
* Holds controls for the GUI elements.
*
* @author Tim Lukas Förster
*/
public class Controller extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception{
GridPane mainPane = new GridPane();
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(mainPane, 300, 275));
primaryStage.show();
}
}