created GUI Main and AddParticipant

This commit is contained in:
Andrin Fassbind 2022-04-29 11:48:37 +02:00
parent 0974af77b6
commit 89b7ac2268
1 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,9 @@ import javafx.stage.Stage;
import java.io.IOException;
public class MainWindow extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
FXMLLoader loader = new FXMLLoader(getClass().getResource("mainWindow.fxml"));
@ -23,7 +26,7 @@ public class MainWindow extends Application {
//Can be used to Open new Scene in same Stage.
//This way possible to later give object to Controller
public void startParticipand(Stage stage) {
FXMLLoader loader = new FXMLLoader(getClass().getResource("..\\participandAddFormular\\participandFormular.fxml"));
FXMLLoader loader = new FXMLLoader(getClass().getResource("../participandAddFormular/participandFormular.fxml"));
try {
Pane pane = loader.load();
Scene scene = new Scene(pane);