Skip to content

Instantly share code, notes, and snippets.

@alcides
Last active May 24, 2019 16:49
Show Gist options
  • Save alcides/d8ce4e11bf930bde6bd919a19c8d9f0f to your computer and use it in GitHub Desktop.
Save alcides/d8ce4e11bf930bde6bd919a19c8d9f0f to your computer and use it in GitHub Desktop.
Ficheiro de teste para javafx
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 {
@Override
public void start(Stage primaryStage) {
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);
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment