I have the following definition of a LibraryStack:
<s:LibraryStack Name="TaggingContainer" Margin="20" Grid.Row="1" Grid.ColumnSpan="2" AllowDrop="True" Height="300" Width="300" s:SurfaceDragDrop.DragLeave="TaggingContainer_DragLeave" s:SurfaceDragDrop.DragEnter="TaggingContainer_DragEnter" s:SurfaceDragDrop.PreviewDrop="LibraryStack_PreviewDrop">
<s:LibraryStack.ItemTemplate>
<DataTemplate>
<Label Content="{Binding Name}" Tag="{Binding}" FontSize="20" Margin="10,10,10,10" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="White" Background="#c49b14" BorderBrush="White" BorderThickness="2" s:Contacts.PreviewContactDown="Label_PreviewContactDown"></Label>
</DataTemplate>
</s:LibraryStack.ItemTemplate>
</s:LibraryStack>
Now in the code-behind I want to iterate over all the labels that are contained in the LibraryStack (the label defined in the data template).
But if I use
foreach (FrameworkElement element in TaggingContainer.Items) {
}
I iterate over the data objects that are in the TaggingContainer and not the Datatemplates. How can I change that?
The easiest way is probably to find every
LibraryStackItem
orLabel
under theLibraryStack
in the Visual Tree. Try thisAlternatively you could get the container for each element and get the
Label
that way insteadGetVisualChild
GetVisualChildCollection