import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.layout.StackPane; import javafx.stage.Stage; public class HelloWorld extends Application{ public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { Button btn = new Button("Click me"); btn.setOnAction(new EventHandler<ActionEvent>() { @Override public void handle(ActionEvent event) { System.out.println("hello world"); } }); StackPane root = new StackPane(); root.getChildren().add(btn); Scene scene = new Scene(root,500,300); primaryStage.setScene(scene); primaryStage.show(); } }
Step by Step: How to build your first JavaFX application
Developing a JavaFX Hello World Application
Your First JavaFX Application
Hello World, JavaFX
Getting Started with JavaFX
Searches related to create first javafx application
javafx application examples
javafx application tutorial
javafx application source code
javafx application development
javafx application icon
javafx application thread
javafx tutorial pdf
javafx tutorial eclipse