-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMain14.java
More file actions
58 lines (43 loc) · 1.46 KB
/
Copy pathMain14.java
File metadata and controls
58 lines (43 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
50
51
52
53
54
55
56
57
58
package JavaFXDemo;
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class Main14 extends Application {
Stage window;
Scene scene;
Button button;
ComboBox<String> comboBox;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
window = primaryStage;
window.setTitle("ComboBox Demo");
button = new Button("Click me");
comboBox = new ComboBox<>();
comboBox.getItems().addAll(
"Good Will Hunting",
"St.Vincent",
"Speed"
);
comboBox.setPromptText("What is your favorite movie?");
comboBox.setEditable(true);
button.setOnAction(e -> printMovie());
//ComboBoxes also generate actions if you need to get value instantly
comboBox.setOnAction(e -> System.out.println("User selected " + comboBox.getValue()));
VBox layout = new VBox(10);
layout.setPadding(new Insets(20, 20, 20, 20));
layout.getChildren().addAll(comboBox, button);
scene = new Scene(layout, 300, 250);
window.setScene(scene);
window.show();
}
private void printMovie(){
System.out.println(comboBox.getValue());
}
}