Last active
May 24, 2019 16:49
-
-
Save alcides/d8ce4e11bf930bde6bd919a19c8d9f0f to your computer and use it in GitHub Desktop.
Ficheiro de teste para javafx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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