-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMain3.java
More file actions
44 lines (33 loc) · 1.59 KB
/
Main3.java
File metadata and controls
44 lines (33 loc) · 1.59 KB
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
38
39
40
41
42
43
44
package JavaFXDemo;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class Main3 extends Application {
//Application is the class that inherits all the functionality
Button button;
public static void main(String[] args) {
launch(args);
//launch(args) is a method that is called once the main program starts and goes inside the application class
//it sets ups your javafx application
}
@Override
public void start(Stage primaryStage) {
//the application will call a method called start, start is actually overridden because you are inheriting
//it from the application class. The start method passes in the primaryStage which is the main window for
//the application.
primaryStage.setTitle("Title of the Window"); //sets the title of the window
button = new Button();
button.setText("Click me");
button.setOnAction(e -> { //e stands for the event handler
System.out.println("Hey now brown cow");
System.out.println("I am a meatball");
});
StackPane layout = new StackPane(); //create layout object of the StackPane class
layout.getChildren().add(button); //add button to the layout
Scene scene = new Scene(layout, 300, 250); //Create scene of the Scene class, pass in layout object and hw
primaryStage.setScene(scene); //pass in scene object to set Scene of window
primaryStage.show(); //show the window
}
}