تطبيقك الأول في JavaFX
كل تطبيق JavaFX يمتد من الفئة Application.
java import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.stage.Stage;
public class Main extends Application { @Override public void start(Stage primaryStage) { Label label = new Label("Hello World!"); Scene scene = new Scene(label, 400, 300); primaryStage.setScene(scene); primaryStage.setTitle("My First App"); primaryStage.show(); } public static void main(String[] args) { launch(args); } }