-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMain29.java
More file actions
49 lines (36 loc) · 1.46 KB
/
Copy pathMain29.java
File metadata and controls
49 lines (36 loc) · 1.46 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
45
46
47
48
49
package JavaFXDemo;
import javafx.application.Application;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class Main29 extends Application {
Stage window;
Button button;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
window = primaryStage;
window.setTitle("thenewboston");
IntegerProperty x = new SimpleIntegerProperty(3);
IntegerProperty y = new SimpleIntegerProperty();
y.bind(x.multiply(10)); //the value of y will change by the change in the value of x
System.out.println("x: " + x.getValue());
System.out.println("y: " + y.getValue() + "\n");
x.setValue(9);
System.out.println("x: " + x.getValue());
System.out.println("y: " + y.getValue() + "\n");
//binding is good to use in JavaFX so that your submit buttton is always in the center no matter how large or
//small the window get. So you would bind the button to the height and width of the window.
button = new Button("Submit");
StackPane layout = new StackPane();
layout.getChildren().add(button);
Scene scene = new Scene(layout, 300, 250);
window.setScene(scene);
window.show();
}
}