I have a FlipView control with the DataTemplate defined as below:
<FlipView x:Name="FlipView5Horizontal" Width="480" Height="270" BorderBrush="Black" BorderThickness="1" Style="{StaticResource FlipViewStyle1}">
<FlipView.ItemTemplate>
<DataTemplate>
<Grid>
<Image Width="480" Name="xxxImage" Height="270" Source="{Binding Image}" Stretch="UniformToFill"/>
<Border Name="xxxBorder" Background="#A5000000" Height="80" VerticalAlignment="Bottom">
<TextBlock Name="xxxTB" Text="{Binding Title}" FontFamily="Segoe UI" FontSize="26.667" Foreground="#CCFFFFFF" Padding="15,20"/>
</Border>
</Grid>
</DataTemplate>
</FlipView.ItemTemplate>
</FlipView>
In my code behind, I need to have access to the TextBlock named "xxxTB". Here is my code to do that:
public IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
yield return (T)child;
}
foreach (T childOfChild in FindVisualChildren<T>(child))
{
yield return childOfChild;
}
}
}
}
public void TestMethod()
{
foreach (var item in FindVisualChildren<TextBlock>(this))
{
if (timeLine.Name == "xxxTB")
{ }
}
}
But, when it finds the FlipView in the VisualTree, it returns from: for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
because VisualTreeHelper.GetChildrenCount(depObj)
does not return anything.
Any idea?
GetTemplateChild("xxxTB")
. – Buttocks