Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
55 lines (42 loc) · 1.46 KB

File metadata and controls

55 lines (42 loc) · 1.46 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import javafx.application.Application;
import javafx.collections.ObservableList;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.SelectionMode;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
import javafx.scene.control.ListView;
public class Main extends Application {
Stage window;
Scene scene;
Button button;
ListView<String> listView;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
window = primaryStage;
window.setTitle("ListView Demo");
button = new Button("Submit");
listView = new ListView<>();
listView.getItems().addAll("Iron Man", "Titanic", "Contact", "Surrogates");
listView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
button.setOnAction(e -> buttonClicked());
VBox layout = new VBox(10);
layout.setPadding(new Insets(20, 20, 20, 20));
layout.getChildren().addAll(listView, button);
scene = new Scene(layout, 300, 250);
window.setScene(scene);
window.show();
}
private void buttonClicked(){
String message = "";
ObservableList<String> movies;
movies = listView.getSelectionModel().getSelectedItems();
for(String m: movies)
message += m + "\n";
System.out.println(message);
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.