JAVAFX2如何将一个FXML的内容加到另一个FXML中 50
现在我有一个框架FXML,还有一个子模块FXML,我应该如何将这个子模块的FXML的内容加到框架FXML里的一个AnchorPane里,并且无论这个AnchorPane有...
现在我有一个框架FXML,还有一个子模块FXML,我应该如何将这个子模块的FXML的内容加到框架FXML里的一个AnchorPane里,并且无论这个AnchorPane有多大,子模块的大小都能填满(自适应大小)?
Parent father = (Parent) FXMLLoader.load(getClass().getResource("father.fxml"));
Parent child = (Parent) FXMLLoader.load(getClass().getResource("child.fxml"));
AnchorPane contain = (AnchorPane) father.lookup("#container");
现在如何将child的内容加到contain中并实现自适应大小? 展开
Parent father = (Parent) FXMLLoader.load(getClass().getResource("father.fxml"));
Parent child = (Parent) FXMLLoader.load(getClass().getResource("child.fxml"));
AnchorPane contain = (AnchorPane) father.lookup("#container");
现在如何将child的内容加到contain中并实现自适应大小? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询