gpt4 book ai didi

JavaFX SplitPane 不工作

转载 作者:行者123 更新时间:2023-12-01 10:50:11 24 4
gpt4 key购买 nike

我尝试实现 here 中的标准示例,看起来像这样:

SplitPane sp = new SplitPane();
final StackPane sp1 = new StackPane();
sp1.getItems().add(new Button("Button One"));
final StackPane sp2 = new StackPane();
sp2.getItems().add(new Button("Button Two"));
final StackPane sp3 = new StackPane();
sp3.getItems().add(new Button("Button Three"));
sp.getItems().addAll(sp1, sp2, sp3);
sp.setDividerPositions(0.3f, 0.6f, 0.9f);

但在 NetBeans IDE 中,我收到“找不到符号”消息,该消息指向使用 getItems 方法的代码行。因此,我在 IDE 中检查了 sp1 变量,发现不再有任何 getItems,但我不知道该使用什么来代替。

最佳答案

StackPane 没有 getItems 方法,它使用 getChildren()!

关于JavaFX SplitPane 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33961398/

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