Как получить элемент в коде из DataTemplate
У меня есть элемент управления FlipView с DataTemplate, определенный как показано ниже:
<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>
В моем коде позади, мне нужно иметь доступ к TextBlock с именем "xxxTB". Вот мой код для этого:
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")
{ }
}
}
Но когда он находит FlipView в VisualTree, он возвращается из: for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
так как VisualTreeHelper.GetChildrenCount(depObj)
ничего не возвращает.
Любая идея?
3 ответа
Решение
Итак, вот рабочее решение:
public void TestMethod()
{
DataTemplate dt = FlipView5Horizontal.ItemTemplate;
DependencyObject dio = dt.LoadContent();
foreach (var timeLine in FindVisualChildren<TextBlock>(dio)) //FindVisualTree is defined in the question :)
{
if (timeLine.Name == "xxxTB")
{ }
}
}
Теперь я могу загрузить хотя бы элемент управления. (Тем не менее, я прочитал, что этот прием не должен использоваться в переопределенном методе OnApplyTemplate по некоторым причинам).
Попробуй это
ContentPresenter cp = GetFrameworkElementByName<ContentPresenter>(FlipView5Horizontal);
DataTemplate dt = FlipView5Horizontal.ItemTemplate;
TextBlock l = (dt.FindName("xxxTB", cp)) as TextBlock;
private static T GetFrameworkElementByName<T>(FrameworkElement referenceElement) where T : FrameworkElement
{
FrameworkElement child = null;
for (Int32 i = 0; i < VisualTreeHelper.GetChildrenCount(referenceElement); i++)
{
child = VisualTreeHelper.GetChild(referenceElement, i) as FrameworkElement;
System.Diagnostics.Debug.WriteLine(child);
if (child != null && child.GetType() == typeof(T))
{
break;
}
else if (child != null)
{
child = GetFrameworkElementByName<T>(child);
if (child != null && child.GetType() == typeof(T))
{
break;
}
}
}
return child as T;
}
Вы можете попробовать это:
var textblock = IteratingKeyboardChildren(g, keyName);
Border IteratingKeyboardChildren(Grid g, string keyName)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(g); i++)
{
var child = VisualTreeHelper.GetChild(g, i);
if (child is TextBlock )
{
if ((child as TextBlock ).Tag.ToString().Equals( keyName))
return child as TextBlock ;
}
}
return null;
}