vote up 0 vote down star

Probably very easy but I am having trouble to figure this out (also Google doesn't seem to help much).

How can I loop through the statically declared elements (no databinding - elements are declared in the xaml) of a StackPanel?

Any help appreciated!

flag

1 Answer

vote up 1 vote down check

Do you mean the StackPanel's children?

foreach (var child in stackPanel.Children)
{
    //do something with child
}

A more generic solution that would work regardless of the parent would be to use LogicalTreeHelper or VisualTreeHelper, depending on what WPF tree you wish to traverse:

foreach (var child in LogicalTreeHelper.GetChildren(stackPanel))
{
    //do something with child
}

HTH, Kent

link|flag
thanks - just found it myself but your answer is spot-on. couldn't find it as I was looking for "Items"! – JohnIdol Sep 14 at 10:47
While Kent is 100% correct, if you're editing XAML objects directly in your code-behind, it's most likely the case that you're not using databinding where you should be. Not always the case though :) – Paul Betts Sep 15 at 2:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.