将节点添加到AnchorPane(在滚动窗格内),Javafx

时间:2014-02-21 07:30:41

标签: javafx java-8 scrollpane

我可以将元素添加到AnchorPane内的ScrollPane。然而他们暂时隐藏起来。第二个我点击AnchorPane,元素出现。我尝试做element.toFront()这样的事情,但没有成功。任何想法如何让元素立即出现?

示例代码希望:

AnchorPane host= new AnchorPae();

ScrollPane sp = new ScrollPane(host);
AnchorPane node = new AnchorPane();

host.getChildren().add(node);

我在每个节点上尝试过requestFocus()等功能,但没有成功。我也试图模仿鼠标点击事件,但它没有用。一旦我点击AnchorPane,一切都会显示出来。

0 个答案:

没有答案