JavaFX 8 中文本区域的透明背景

2022-09-03 05:29:51

由于我使用的是JavaFX 8,因此我的所有s都不应用在相应的css中定义的那个。它在Java 7中工作正常,但是对于JavaFX 8的候选版本,我无法让它像以前那样运行。textareatransparency

编辑:这个问题是关于JavaFX TextArea的,而不是JTextArea。
不再对文本区域有任何影响,尽管它的 alpha 值应该为 0.2,但它是不透明的...-fx-background-color: rgba(53,89,119,0.2);

这是一个已知问题吗?


答案 1

文本区域由多个节点组成。要使背景透明,还必须更改子窗格的背景(TextArea,ScrollPane,ViewPort,Content)。这可以通过CSS完成。

CSS 示例:

.text-area {
    -fx-background-color: rgba(53,89,119,0.4);
}

.text-area .scroll-pane {
    -fx-background-color: transparent;
}

.text-area .scroll-pane .viewport{
    -fx-background-color: transparent;
}


.text-area .scroll-pane .content{
    -fx-background-color: transparent;
}

同样可以通过代码完成。代码不应用于生产。它仅用于演示节点结构。

代码示例(使所有背景完全透明):

    TextArea textArea = new TextArea("I have an ugly white background :-(");
    // we don't use lambdas to create the change listener since we use
    // the instance twice via 'this' (see *)
    textArea.skinProperty().addListener(new ChangeListener<Skin<?>>() {

        @Override
        public void changed(
          ObservableValue<? extends Skin<?>> ov, Skin<?> t, Skin<?> t1) {
            if (t1 != null && t1.getNode() instanceof Region) {
                Region r = (Region) t1.getNode();
                r.setBackground(Background.EMPTY);

                r.getChildrenUnmodifiable().stream().
                        filter(n -> n instanceof Region).
                        map(n -> (Region) n).
                        forEach(n -> n.setBackground(Background.EMPTY));

                r.getChildrenUnmodifiable().stream().
                        filter(n -> n instanceof Control).
                        map(n -> (Control) n).
                        forEach(c -> c.skinProperty().addListener(this)); // *
            }
        }
    });

更多参考:JavaFX CSS 文档


答案 2

推荐