gpt4 book ai didi

JavaFX : Use custom Node as collapse/expand branch switch for TreeView

转载 作者:搜寻专家 更新时间:2023-10-31 20:12:15 26 4
gpt4 key购买 nike

是否可以将 TreeView 的展开和折叠箭头替换为自定义 Node/形状(而不是 image )?

最佳答案

箭头的 -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
}

关于JavaFX : Use custom Node as collapse/expand branch switch for TreeView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20081433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com