1

我有以下 JavaFX FXML 结构:

<BorderPane fx:id="mainWindow" prefHeight="500.0" prefWidth="800.0" styleClass="mainFxmlClass" xmlns:fx="http://javafx.com/fxml/1">

    <stylesheets>
        <URL value="@mainwindow.css"/>
    </stylesheets>

    <top>
        <fx:include fx:id="buttonPanel" source="/com/example/app/chart/buttons/buttonPanel.fxml" />
    </top>
    <center>
        <BorderPane fx:id="chartContainer">
            <center>
                <fx:include fx:id="chartPanel" source="/com/example/app/chart/chartpanel/chartPanel.fxml" />
            </center>
            <right>
                <fx:include fx:id="rightAxisPanel" source="/com/example/app/chart/rightaxis/rightAxisPanel.fxml" />
            </right>
        </BorderPane>
    </center>

</BorderPane>

存在chartPanelrightAxisPanel

<AnchorPane fx:id="chartPanel" styleClass="chartPanelClass" xmlns:fx="http://javafx.com/fxml/1">
    <stylesheets>
        <URL value="@chartpanel.css"/>
    </stylesheets>
</AnchorPane>

<AnchorPane fx:id="rightAxisPanel" prefWidth="100.0" minWidth="100.0" styleClass="rightAxisPanelClass" xmlns:fx="http://javafx.com/fxml/1">
    <stylesheets>
        <URL value="@rightaxispanel.css"/>
    </stylesheets>
</AnchorPane>

这会生成下图:

图像1

到目前为止,一切都很好。

但是,如果我减小窗口的大小,则右侧面板将被截断-查看与 rigthAxisPanel 相对应的黄色区域如何被截断-。

我该怎么做才能让中央面板被截断?

在此处输入图像描述

4

1 回答 1

2

中心的最小宽度AnchorPane可防止其收缩。将值设置为 0 以确保它允许收缩。

此外,您应该将 aclip应用于AnchorPane以避免其内容显示在其右边界的右侧。如果您在右侧使用(半)透明背景,则可能会发生这种情况,更改viewOrder或如果您将右节点放在外部BorderPane.

<AnchorPane fx:id="chartPanel" styleClass="chartPanelClass" xmlns:fx="http://javafx.com/fxml/1" minWidth="0">
    <stylesheets>
        <URL value="@chartpanel.css"/>
    </stylesheets>
    <clip>
        <Rectangle width="${chartPanel.width}" height="${chartPanel.height}"/>
    </clip>
</AnchorPane>
于 2019-07-03T15:51:59.053 回答