I have a StackPanel
that is full of controls, I am trying to loop through the elements and get their Names, but it seems that I need to cast each element to its type in order to access its Name
property.
But what if I have a lot of different types in the StackPanel and I just want to get the elements name?
Is there a better way to do that?
Here is what I've tried:
foreach (object child in tab.Children)
{
UnregisterName(child.Name);
}