是否可以使用自定义TreeView
/形状(而不是image)替换Node
的展开和折叠箭头?
答案 0 :(得分:4)
箭头的-fx-shape
css属性提供基本的SVG形状。
.tree-cell .tree-disclosure-node .arrow {
-fx-background-color: -fx-mark-color;
-fx-padding: 0.333333em; /* 4 */
-fx-shape: "M 0 -4 L 8 0 L 0 4 z"; // <-- change this default triangle shape
}
.tree-cell:expanded .tree-disclosure-node .arrow {
-fx-rotate: 90; // maybe another svg shape instead
}