-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFXHelloWorldNamedClass.java
37 lines (31 loc) · 1.14 KB
/
FXHelloWorldNamedClass.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//Example 1-1 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 FXHelloWorldNamedClass 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'");
//This version implements an event-handler class and then instantiates it
btn.setOnAction(new ButtonHandler());
StackPane root = new StackPane();
root.getChildren().add(btn);
primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
}
public class ButtonHandler implements EventHandler<ActionEvent> {
@Override
public void handle(ActionEvent event) {
System.out.println(" Hello World (from the Named Event Handler class)");
}
}
}