Guest User

Untitled

a guest
Jun 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. private void GetControls(ControlCollection controlCollection)
  2. {
  3. foreach (Control i in controlCollection)
  4. {
  5. controlsToParse.Add(i);
  6. if (i.Controls.Count > 0)
  7. GetControls(i.Controls);
  8. }
  9.  
  10. }
Add Comment
Please, Sign In to add comment