Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@MrBahur
MrBahur / Main.java
Created May 17, 2020 16:24 — forked from jewelsea/Main.java
Small JavaFX framework for swapping in and out child panes in a main FXML container. Code is for Java 8+.
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
import java.io.IOException;
/**
* Main application class.