我目前正在开发一些功能,允许用户根据需要添加一组复选框,文本字段和按钮。之后,我希望能够访问存储在文本字段中的文本以及复选框的状态。
我目前的代码如下:
@FXML VBox box = new VBox(10);
{
HBox horizBox = new HBox(10);
Button button3 = new Button("Hi");
TextField textTest = new TextField();
CheckBox check3 = new CheckBox();
box.getChildren().addAll(horizBox);
horizBox.getChildren().addAll(textTest, check3, button3);
System.out.println(textTest.getText());
}
即使在提供各种输入后,输出仍为空白。如何在动态生成的文本框中访问数据?例如,如果我想从用户制作的第四个文本框中获取输入,我将如何进行此操作?
感谢。