My control "MyTextBox1" add dynamically on form1 under container1 control. This form1 can be child of form2 and form2 can be child of form3 and so on how can I find my control from multi controls collection?
e.g. MyTextBox1 exists in
form3.form2.form1.Container1.MyTextBox1
how to find my control by name from multi control collections?
I do not want to use recursive foreach control collection. I am looking for an smart/short code like controls.Find().