Is there a simple way to get all controls that contains the property ".Text"?
I’m able to get all "top level" controls, but my code doesn’t find sub controls like menu items on all levels, etc. I also tried "ctrl.HasChildren".
How do I do this in Windows Forms at runtime?
You could loop through each control and use reflection to find the property Name Text
Adding in the search for all controls