Skip to content

Instantly share code, notes, and snippets.

@thomasdarimont
Created November 17, 2021 12:55
Show Gist options
  • Save thomasdarimont/ecca4bebc711b5ebd3b49c55daa9c109 to your computer and use it in GitHub Desktop.
Save thomasdarimont/ecca4bebc711b5ebd3b49c55daa9c109 to your computer and use it in GitHub Desktop.
Simple JavaFX Hello World
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) {
primaryStage.setTitle("Hello World!");
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment