my Silverlight 4 application contains a treeview. I have customized the look of the TreeViewItems with an HierarchicalDataTemplate:
<sdk:TreeView x:Name="TreeViewModel" ItemTemplate="{StaticResource DataTemplateTreeViewDisplayObjects}" .../>
<sdk:HierarchicalDataTemplate x:Key="DataTemplateTreeViewDisplayObjects" ItemsSource="{Binding Children}">
<Grid>
<Border x:Name="BorderComponent" .../>
</Grid>
</sdk:HierarchicalDataTemplate>
Eventually, I need to parse through all TreeViewItems and access an UIElement (i.e. the "BorderComponent"). Like so:
foreach (TreeViewItem tvi in _myTreeView.Items)
tvi.BorderComponent.Visibility = Visibility.Collapsed
Obviously this doesn't work, because Items will return the bound object. And even if I could access the TreeViewItem (_myTreeView.ItemContainerGenerator.ContainerFromIndex(0) as TreeViewItem to get the first one), I don't know how to access the Border, because the TreeViewItem doesn't know about the HierarchicalDataTemplate, that is used to create the items.
Any idea, how I could access the "BorderComponent"-item in each TreeViewItem?
Thanks in advance,
Frank