FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Source-Code-from-Tutorials/JavaFX/016_treeView/Main.java at master · sofitech05/Source-Code-from-Tutorials · GitHub
sofitech05
/
Source-Code-from-Tutorials
Public
forked from
buckyroberts/Source-Code-from-Tutorials
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Source-Code-from-Tutorials
/
JavaFX
/
016_treeView
/
Main.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
65 lines (52 loc) · 1.74 KB
Breadcrumbs
Source-Code-from-Tutorials
/
JavaFX
/
016_treeView
/
Main.java
Copy path
File metadata and controls
65 lines (52 loc) · 1.74 KB
Raw
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
;
}
}
Back
|
FazBrowse Home
|
New Git URL