如果节点的形状不是矩形,那么-fx-background-insets
值是如何计算的,即没有 - 有意义的 - 右上 - 左下 - 左边? (问题也出现在-fx-border-width
等。)
我想要达到的目标是让Pane
具有三角形状,每边都有不同的边框宽度。
.triangle-pane {
-fx-background-color: outer-color, inner-color;
-fx-shape: "M 0 4 L 10 1 L 10 7 z";
-fx-background-insets: 0, ?; // what to write here?
}
如果我写一个值,它会按预期工作。如果我写更多,它表现得很奇怪。我无法理解。任何帮助表示赞赏。