24 lines
584 B
Java
24 lines
584 B
Java
|
|
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);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|