I am wondering how can I create an array of Containers in Javafx.
What I mean is I like to create for loop, and inside I will create Panes and labels inside each Pane created.
for(int i=0;i<10;i++){ // I will create 10 Panes with each one has 4 labels in it. }
The thing is I have googled it and checked here as well, but couldnt see any example for this.
Can anyone help me with the logic of this.
Thanks