Remove all children from a group without knowing the containing nodes

大兔子大兔子 提交于 2019-12-19 13:46:18

问题


check this out

 Group g = new Group();
 GridPane grid = new GridPane(); // 
 g.getChildren().addAll(grid);

now my question is how do i remove this "grid" from "g" without specifying "grid" like something like this

g.getChildren().removeAll(null); //i do not know what to insert here?

thanks in advance


回答1:


If you want to remove all items from a collection, use the clear() method:

g.getChildren().clear();


来源:https://stackoverflow.com/questions/27066484/remove-all-children-from-a-group-without-knowing-the-containing-nodes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!