C# loop through all controls in a form code example
Example: windows forms iterate through all controls
private void LoopThroughControls(Control parent)
{
foreach (Control c in parent.Controls)
{
if (c.GetType() == typeof(YourType)) {
//Do stuff
} else {
LoopThroughControls(c);
}
}
}