Now that we have crossed the 10th version marker, can we finaly have the ability to add arrays of views directly inside the designer? Please???
Adding a few dozens panels one by one, and having them as individual views is very limiting and code consuming.
I know that we can create an array and add the views into them, but each view has to be dimmed anyway.
Please consider this wish!
There are quite simple ways to organize your views. For example, you can group then based on the tag:
B4X:
Dim MySpecialPanels As List
MySpecialPanels.Initialize
For Each v As B4XView In Root.GetAllViewsRecursive
If "SpecialPanel" = v.Tag Then MySpecialPanels.Add(v)
Next