gui updates
This commit is contained in:
23
src/main/java/lodge/TestMainFx.java
Normal file
23
src/main/java/lodge/TestMainFx.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package lodge;
|
||||
|
||||
import javafx.application.Application;
|
||||
import javafx.scene.Scene;
|
||||
import javafx.stage.Stage;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.layout.StackPane;
|
||||
|
||||
public class TestMainFx extends Application{
|
||||
@Override
|
||||
public void start(Stage primaryStage) {
|
||||
primaryStage.setTitle("Lodge ReservationSystem");
|
||||
Scene scene = new Scene(new StackPane(new Label("Hello World!")), 800, 600);
|
||||
primaryStage.setScene(scene);
|
||||
primaryStage.show();
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
launch(args);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user