我在BorderPane的右侧有一个AnchorPane,在底部有另一个AnchorPane。我想知道最好的方法,要牢记可调整大小,以使正确的AncorPane占据整个右侧,并在底部的AnchorPane末端开始正确的AnchorPane。
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.BorderPane?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1">
<bottom>
<AnchorPane minWidth="200.0" prefHeight="45.0" prefWidth="600.0" BorderPane.alignment="CENTER" />
</bottom>
<right>
<AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
</right>
</BorderPane>
答案 0 :(得分:0)
首先,我建议使用常规的Pane
而不是AnchorPane
。
然后,您可以将其放在start
方法内的代码中。
stage.widthProperty().addListener(event -> {
rightPane.setPrefWidth(stage.getWidth()/2);
rightPane.relocate(stage.getWidth()/2,0);
});
stage.heightProperty().addListener(event -> {
rightPane.setPrefHeight(stage.getHeight());
});
root.getChildren().add(pane);
这将使窗格占据右侧舞台或窗口的一半。
然后在您的fxml文件中,在
中<bottom>
<AnchorPane minWidth="200.0" prefHeight="45.0" prefWidth="600.0" BorderPane.alignment="CENTER" />
</bottom>
<right>
<AnchorPane prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
</right>
删除所有说明窗格的位置和宽度的内容。
然后,对于底部窗格,可以将其添加到widthProperty()
和heightProperty()
侦听器中以获取此信息:
stage.widthProperty().addListener(event -> {
rightPane.setPrefWidth(stage.getWidth()/2);
rightPane.relocate(stage.getWidth()/2,0);
bottomPane.setPrefWidth(stage.getWidth()-rightPane.getPrefWidth());
});
stage.heightProperty().addListener(event -> {
rightPane.setPrefHeight(stage.getHeight());
bottomPane.setPrefHeight(100); // change 100 to how high you want your bottomPane to be
//if you want your bottomPane's height to be half the height of the window use this: bottomPane.setPrefHeight(stage.getHeight()/2);
bottomPane.relocate(0,stage.getHeight() - bottomPane.getPrefHeight());
bottomPane.toFront();
});