gpt4 book ai didi

JavaFX StackPane 边界未更新

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:18:11 27 4
gpt4 key购买 nike

当我运行下面的程序时

import javafx.application.Application;
import javafx.application.Platform;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.Pane;
import javafx.scene.layout.StackPane;
import javafx.scene.shape.Ellipse;
import javafx.stage.Stage;


public class Test1 extends Application {

public static void main(String[] args) throws Exception {
launch(args);
}

@Override
public void start(Stage stage) throws Exception {
Pane topPane = new Pane();
Scene scene = new Scene(topPane, 600, 400);

StackPane sp = new StackPane();
Label l1 = new Label("1 2");
Ellipse e1 = new Ellipse(100, 50);
e1.setOpacity(0.5);
sp.getChildren().addAll(l1, e1);
e1.radiusXProperty().bind(l1.widthProperty());
e1.radiusYProperty().bind(l1.heightProperty());
topPane.getChildren().add(sp);
sp.relocate(200, 100);

sp.setStyle("-fx-border-color: RED;");

Platform.runLater(() -> {
//l1.setText("123");
//l1.setText("1 2");
});

stage.setScene(scene);
stage.show();
}
}

我只得到一个围绕文本标签的红色框,但是当我取消注释上面 Platform.runLater() block 内的两行时,我得到一个围绕外部椭圆的红色框,这正是我想要的。所以在我看来,堆栈 Pane 的布局边界没有根据模型描述正确设置,因为边界仅由标签控件确定。但是当我在 Platform.runLater() 中强制失效时,布局边界就在它们应该在的位置。
为什么会发生这种情况,我该如何预防?我希望能够只指定我的模型/图表,然后它应该在第一场演出中正确呈现,或者?

最佳答案

stage.Show(); 之后添加此 sp.requestLayout();

关于JavaFX StackPane 边界未更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32271672/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com