MIT-Curricular/OOP/Java/Lab/Week13/FirstFXApp.java

30 lines
855 B
Java
Raw Permalink Normal View History

2024-10-26 02:15:26 +05:30
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.FlowPane;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
public class FirstFXApp extends Application {
@Override
public void start(Stage primaryStage) {
Label welcomeLabel = new Label("Welcome to JavaFX programming");
welcomeLabel.setTextFill(Color.MAGENTA);
FlowPane flowPane = new FlowPane();
flowPane.setHgap(15);
flowPane.setVgap(15);
flowPane.getChildren().add(welcomeLabel);
Scene scene = new Scene(flowPane, 500, 200);
primaryStage.setTitle("This is the first JavaFX Application");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}