我具有以下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>
成为chartPanel
和rightAxisPanel
:
<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>
这将产生下图:
到目前为止,很好。
但是,如果我减小窗口的大小,则右边的面板将被截断-请查看对应于rigthAxisPanel的黄色区域是如何被截断的-。
如何使中央面板被截断?
答案 0 :(得分:2)
中心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>