1

我有一个简单的表格,它有带有 2 个元素的手风琴容器。
我想删除或修改 Accordion 默认边框。

我的FXMLDocument.fxml文件:

<AnchorPane id="AnchorPane" prefHeight="400.0" prefWidth="600.0" styleClass="form" stylesheets="@styles.css" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/10.0.1">
    <children>
      <Accordion layoutX="100.0" layoutY="75.0" prefHeight="250.0" prefWidth="400.0">
        <panes>
          <TitledPane styleClass="acc-titled-pane" text="Option 1">
            <content>
                <AnchorPane prefHeight="180.0" prefWidth="200.0" styleClass="acc-pane-body">
                </AnchorPane>
            </content>
          </TitledPane>
          <TitledPane styleClass="acc-titled-pane" text="Option 2">
            <content>
                <AnchorPane prefHeight="180.0" prefWidth="200.0" styleClass="acc-pane-body">
                </AnchorPane>
            </content>
          </TitledPane>
        </panes>
      </Accordion>
    </children>
</AnchorPane>

我的styles.css文件:

.form {
    -fx-background-color: lightgreen;
}
.acc-titled-pane {
    -fx-border-color: transparent;
}
.acc-pane-body {
    -fx-background-color: lightgreen;
    -fx-border-color: transparent;
}

如您所见,我使所有边框透明,但仍有一些边框: 在此处输入图像描述 我尝试了很多 css 规则,但没有一个对我有用。

4

1 回答 1

2

首先,您应该.content为 TitledPane ( docs ) 的子类设置样式。

此外,您应该设置-fx-border-width,而不是-fx-border-color因为即使是透明的也会导致父母背景闪耀:

透明边框

如果您将内容子类的边框宽度设置为0它应该可以解决您的问题:

.acc-titled-pane .content {
    -fx-border-width: 0;
}

结果将是:

无边界

于 2019-03-10T00:06:53.293 回答