我尝试从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
,但我不知道该使用什么。
答案 0 :(得分:1)
StackPane
没有getItems
方法,它使用getChildren()
!