forked from buckyroberts/Source-Code-from-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.java
More file actions
53 lines (40 loc) · 1.42 KB
/
Copy pathMain.java
File metadata and controls
53 lines (40 loc) · 1.42 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
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ChoiceBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class Main extends Application {
Stage window;
Scene scene;
Button button;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
window = primaryStage;
window.setTitle("ChoiceBox Demo");
button = new Button("Click me");
ChoiceBox<String> choiceBox = new ChoiceBox<>();
//getItems returns the ObservableList object which you can add items to
choiceBox.getItems().add("Apples");
choiceBox.getItems().add("Bananas");
choiceBox.getItems().addAll("Bacon", "Ham", "Meatballs");
//Set a default value
choiceBox.setValue("Apples");
button.setOnAction(e -> getChoice(choiceBox));
VBox layout = new VBox(10);
layout.setPadding(new Insets(20, 20, 20, 20));
layout.getChildren().addAll(choiceBox, button);
scene = new Scene(layout, 300, 250);
window.setScene(scene);
window.show();
}
//To get the value of the selected item
private void getChoice(ChoiceBox<String> choiceBox){
String food = choiceBox.getValue();
System.out.println(food);
}
}