在javafx borderpane中添加和删除内容时,我遇到了一个调整大小的问题。在手动调整窗口大小之前,不会调整边框窗格内容的大小。我已经编写了一个小的测试应用程序来模拟这种行为。应用程序构建一个borderpane,其中包含一个嵌入在borderpane中心的stackpane中的矩形。在borderpane的底部有一个vbox和hbox,其中包含文本和分隔符。有一个菜单项可以从borderpane的底部删除内容(movetext->right),并将类似的内容添加到borderpane的右侧位置。
将文本添加到边框窗格的右侧位置时,矩形与文本重叠。换句话说,borderpane中心的内容与borderpane右侧的内容重叠。
我看到了以下链接-https://stackoverflow.com/questions/5302197/javafx-bug-is-there-a-way-to-force-repaint-this-is-not-a-single-threading-pr 调用requestlayout似乎没有帮助。我还尝试在图中的不同节点上调用impl\u updatepg和impl\u transformschanged。我是从这条线得到这个主意的-https://forums.oracle.com/forums/thread.jspa?threadid=2242083
public class BorderPaneExample extends Application
{
private BorderPane root;
private StackPane centerPane;
@Override
public void start(Stage primaryStage) throws Exception
{
root = new BorderPane();
root.setTop(getMenu());
root.setBottom(getBottomVBox());
centerPane = getCenterPane();
root.setCenter(centerPane);
Scene scene = new Scene(root, 900, 500);
primaryStage.setTitle("BorderPane Example");
primaryStage.setScene(scene);
primaryStage.show();
}
private MenuBar getMenu()
{
MenuBar menuBar = new MenuBar();
MenuItem rightMenuItem = new MenuItem("Right");
rightMenuItem.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent actionEvent) {
root.setRight(getRightHBox());
root.setBottom(null);
root.requestLayout();
}
});
MenuItem bottomMenuItem = new MenuItem("Bottom");
bottomMenuItem.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent actionEvent) {
root.setRight(null);
root.setBottom(getBottomVBox());
}
});
Menu menu = new Menu("Move text");
menu.getItems().add(rightMenuItem);
menu.getItems().add(bottomMenuItem);
menuBar.getMenus().addAll(menu);
return menuBar;
}
private HBox getRightHBox()
{
HBox hbox = new HBox();
VBox vbox = new VBox(50);
vbox.setPadding(new Insets(0, 20, 0, 20));
vbox.setAlignment(Pos.CENTER);
vbox.getChildren().addAll(new Text("Additional Info 1"),
new Text("Additional Info 2"), new Text("Additional Info 3"));
hbox.getChildren().addAll(new Separator(Orientation.VERTICAL), vbox);
return hbox;
}
private VBox getBottomVBox()
{
VBox vbox = new VBox();
HBox hbox = new HBox(20);
hbox.setPadding(new Insets(5));
hbox.setAlignment(Pos.CENTER);
hbox.getChildren().addAll(new Text("Footer Item 1")
, new Text("Footer Item 2"), new Text("Footer Item 3"));
vbox.getChildren().addAll(new Separator(), hbox);
return vbox;
}
private StackPane getCenterPane()
{
StackPane stackPane = new StackPane();
stackPane.setAlignment(Pos.CENTER);
final Rectangle rec = new Rectangle(200, 200);
rec.setFill(Color.DODGERBLUE);
rec.widthProperty().bind(stackPane.widthProperty().subtract(50));
rec.heightProperty().bind(stackPane.heightProperty().subtract(50));
stackPane.getChildren().addAll(rec);
return stackPane;
}
public static void main(String[] args)
{
Application.launch(args);
}
}
如有任何建议,将不胜感激。谢谢
1条答案
按热度按时间ssm49v7z1#
为了得到答案:
这个
StackPane
需要设置其最小大小才能进行剪裁。如果你明确地加上stackPane.setMinSize(0, 0);
到getCenterPane()
方法,它应该能解决你的问题。所以你的
getCenterPane()
方法现在如下所示: