是否可以更改JavaFX 2.2 TreeVIew的展开和折叠图像?
更改此图片,
对于这样的图像(带+/-),
答案 0 :(得分:7)
当然,这可能只需要一点点css。 CSS看起来像这样:
.tree-cell .tree-disclosure-node .arrow {
-fx-shape: null;
-fx-background-color: null;
-fx-background-image: url("plus-arrow.png");
}
.tree-cell:expanded .tree-disclosure-node .arrow {
-fx-shape: null;
-fx-background-color: null;
-fx-background-image: url("minus-arrow.png");
}
lg Kalasch