I got a method which is creating UI Element programmatically. Example:
Label label1 = new Label();
label1.Text = "Testlabel";
TimePicker timepicker1 = new TimePicker();
timepicker1.Time = new TimeSpan(07, 00, 00);
After that I add both of them in an already existing StackLayout.
stacklayout1.Children.Add(label1);
stacklayout1.Children.Add(timepicker1);
A user of my app can create this multiple times. Now my question is, how can I access, for example, the second/ better all of TimePickers which were created?