I\'ve got some code that will generically get all Controls in a form and put them in a list. Here\'s some of the code:
private List Ge
The items such as ToolStripItem etc aren't actually controls, they are simply components that make up a ToolStrip or MenuStrip.
Which means, that if you want to include those components in your flattened list of controls then you will need to do the specific checks.