我具有以下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>


生成下图:

java - JavaFX-BorderPane,确保右 Pane 始终具有最小宽度-LMLPHP

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

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

如何使中央面板被截断?

java - JavaFX-BorderPane,确保右 Pane 始终具有最小宽度-LMLPHP

最佳答案

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

此外,应将clip应用于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>

10-04 17:26