JavaFX SplitPane无法正常工作

时间:2015-11-27 16:24:12

标签: java javafx

我尝试从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中,我得到了#34;找不到符号"指向使用getItems方法的代码行的消息。所以,我在IDE中看到sp1变量并且看到不再有getItems,但我不知道该使用什么。

1 个答案:

答案 0 :(得分:1)

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