I have a MainWindow that has Grids, GroupBoxes and TabControls and each of them has other controls inside as a Chidren, Content or Items. I would like to know if is there a way I can get an enumerator or a collection of everyone of each control in the MainWindow.
Here is an example of the designer look like Example.jpg
I have seen some examples in other posts but all of them work only in the case that there are only childcontrols in the MainWindow.
I will appreciate so much your help.
Did you try to use the VisualTreeHelper ?
With VisualTreeHelper.GetChildrenCount(...) and VisualTreeHelper.GetChild(...)