我正在尝试做的事情:
我有菜单,单击后我试图删除不必要的TextField。
我做了什么:
我用这个例子:
“在JavaFX中,只需使用.getChildren()
后跟.remove(Object o)
AnchorPane ap;
ap.getChildren().remove(btn);
我尝试使用:
FXMLLoader load=new FXMLLoader(getClass().getResource("LoginRegister.fxml"));
Parent root = load.load();
root.getChildren();
但是我的根目录没有getChildren()
功能。
问题可能在哪里?
谢谢。
编辑:在此处找到答案:How to access UI components from SceneBuilder in JavaFX
我错了什么:我在FXML文件和不同FX:ID的控制器中使用了