GridPane:RowConstraints percentHeight未按预期工作

时间:2013-04-21 01:53:19

标签: javafx-2 javafx fxml

如果GridPane具有2行和2列,则将行约束设置为50%高度会导致不必要的行为。

代码:

<BorderPane xmlns:fx="http://javafx.com/fxml" fx:controller="..." stylesheets="@general.css" prefWidth="800" prefHeight="600">
    <top>
        <VBox>
            <!-- ... -->
        </VBox>
    </top>

    <bottom>
        <HBox>
            <!-- ... -->
        </HBox>
    </bottom>

    <center>
        <GridPane > 
            <children>

                <ScrollPane fx:id="tilePane" GridPane.columnIndex="0" GridPane.rowIndex="0">
                    <content>
                    </content>
                    <GridPane.margin>
                        <Insets bottom="2" left="2" right="2" top="2" />
                    </GridPane.margin>
                </ScrollPane>

                <TreeView fx:id="listPane" GridPane.columnIndex="0" GridPane.rowIndex="1">
                    <root>
                        <TreeItem value="Stages" />
                    </root>
                    <GridPane.margin>
                        <Insets bottom="2" left="2" right="2" top="2" />
                    </GridPane.margin>
                </TreeView>

                <ScrollPane fx:id="mapPane" GridPane.columnIndex="1" GridPane.rowIndex="0" GridPane.rowSpan="2">
                    <content>
                    </content>
                    <GridPane.margin>
                        <Insets bottom="2" left="2" right="2" top="2" />
                    </GridPane.margin>
                </ScrollPane>

            </children>

            <columnConstraints>
                <ColumnConstraints hgrow="ALWAYS" percentWidth="25"/>
                <ColumnConstraints hgrow="ALWAYS" />
            </columnConstraints>

            <rowConstraints>
                <RowConstraints vgrow="ALWAYS" percentHeight="50" />
                <RowConstraints vgrow="ALWAYS" percentHeight="50" />
            </rowConstraints>
        </GridPane>
    </center>
</BorderPane>

(底部提到的属性)

我预计这两行会以50%的速度分享他们的可用高度。他们这样做,但他们也消耗了比需要更多的空间。

使用和未指定percentHeight的结果图片:

with percentHeight without percentHeight

我是否理解percentHeight错误,还是有其他方法?

0 个答案:

没有答案