30 lines
855 B
Java
30 lines
855 B
Java
|
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);
|
||
|
}
|
||
|
}
|