How to get an enumerator or collection of all the controls in the MainWindow in WPF?

73 Views Asked by At

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.

1

There are 1 best solutions below

0
On

Did you try to use the VisualTreeHelper ?

With VisualTreeHelper.GetChildrenCount(...) and VisualTreeHelper.GetChild(...)