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
65 lines (52 loc) · 1.74 KB

File metadata and controls

65 lines (52 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TreeItem;
import javafx.scene.control.TreeView;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class Main extends Application {
Stage window;
TreeView<String> tree;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
window = primaryStage;
window.setTitle("JavaFX - thenewboston");
TreeItem<String> root, bucky, megan;
//Root
root = new TreeItem<>();
root.setExpanded(true);
//Bucky
bucky = makeBranch("Bucky", root);
makeBranch("thenewboston", bucky);
makeBranch("YouTube", bucky);
makeBranch("Chicken", bucky);
//Megan
megan = makeBranch("Megan", root);
makeBranch("Glitter", megan);
makeBranch("Makeup", megan);
//Create the tree and hide the main Root
tree = new TreeView<>(root);
tree.setShowRoot(false);
tree.getSelectionModel().selectedItemProperty()
.addListener((v, oldValue, newValue) -> {
if (newValue != null)
System.out.println(newValue.getValue());
});
//Layout
StackPane layout = new StackPane();
layout.getChildren().add(tree);
Scene scene = new Scene(layout, 300, 250);
window.setScene(scene);
window.show();
}
//Create branches
public TreeItem<String> makeBranch(String title, TreeItem<String> parent) {
TreeItem<String> item = new TreeItem<>(title);
item.setExpanded(true);
parent.getChildren().add(item);
return item;
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.