FindVisualChild-在ItemsControl中获取命名UI元素的属性

我在运行时使用ItemsControl生成UI元素。用户界面成功生成,但是如果我无法获得所生成的用户界面项的任何属性,例如标签的“内容”或SelectedItem的{​​{1}}。我尝试使用this tutorialthese answers来获取这些属性,但是我总是得到ComboBox

XAML中的NullReferenceException看起来像这样:

ItemsControl

这就是我生成UI元素的方式

            <ItemsControl Name="ListOfVideos">
                <ItemsControl.Background>
                    <SolidColorBrush Color="Black" Opacity="0"/>
                </ItemsControl.Background>
                <ItemsControl.ItemTemplate>
                    <DataTemplate>
                        <Grid Margin="0,10">
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="180"/>
                                <ColumnDefinition Width="400"/>
                                <ColumnDefinition Width="200"/>
                            </Grid.ColumnDefinitions>
                            <Image HorizontalAlignment="Left" Height="100" Width="175" x:Name="VideoThumbnailImage" Stretch="Fill" Source="{Binding VideoThumbnailURL}" Grid.Column="0"></Image>
                            <Label x:Name="VideoTitleLabel" Content="{Binding VideoTitleText}" Foreground="White" Grid.Column="1" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"></Label>
                            <Label x:Name="VideoFileSizeLabel" Content="{Binding VideoTotalSizeText}" Foreground="White" FontSize="14" Grid.Column="1" Margin="0,35" VerticalAlignment="Bottom"></Label>
                            <Label x:Name="VideoProgressLabel" Content="{Binding VideoStatusText}" Foreground="White" FontSize="14" Grid.Column="1" VerticalAlignment="Bottom"></Label>
                            <ComboBox x:Name="VideoComboBox" SelectionChanged="VideoComboBox_SelectionChanged" Grid.Column="2" Width="147.731" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Center" Margin="0,50" ItemsSource="{Binding VideoQualitiesList}"></ComboBox>
                            <Label Content="Video Quality" Foreground="White" FontSize="14" VerticalAlignment="Top" Grid.Column="2" HorizontalAlignment="Center"></Label>
                            <Label Content="Audio Quality" Foreground="White" FontSize="14" VerticalAlignment="Bottom" HorizontalAlignment="Center" Margin="0,27" Grid.Column="2"></Label>
                            <Slider x:Name="VideoAudioSlider" Grid.Column="2" HorizontalAlignment="Center" VerticalAlignment="Bottom" Width="147.731" Maximum="{Binding AudioCount}"></Slider>
                        </Grid>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ItemsControl>

这就是我试图获取UI元素的属性的方法

public class VideoMetadataDisplay
    {
        public string VideoTitleText { get; set; }
        public int AudioCount { get; set; }
        public string VideoThumbnailURL { get; set; }
        public string VideoStatusText { get; set; }
        public string VideoTotalSizeText { get; set; }
        public List<string> VideoQualitiesList { get; set; }
    }

public partial class PlaylistPage : Page
{
private void GetPlaylistMetadata()
        {

            List<VideoMetadataDisplay> newList = new List<VideoMetadataDisplay>();
            //populate the list
            ListOfVideos.ItemsSource = newList;
        }
}

每次尝试运行此命令时,public class Utils { public childItem FindVisualChild<childItem>(DependencyObject obj) where childItem : DependencyObject { for (int i = 0; i < VisualTreeHelper.getchildrenCount(obj); i++) { DependencyObject child = VisualTreeHelper.getchild(obj,i); if (child != null && child is childItem) { return (childItem)child; } else { childItem childOfChild = FindVisualChild<childItem>(child); if (childOfChild != null) return childOfChild; } } return null; } } private void VideoComboBox_SelectionChanged(object sender,SelectionChangedEventArgs e) { UIElement currentitem = (UIElement)ListOfVideos.ItemContainerGenerator.ContainerFromItem(ListOfVideos.Items.currentitem); Utils utils = new Utils(); ContentPresenter CurrentContentPresenter = utils.FindVisualChild<ContentPresenter>(currentitem); DataTemplate CurrentDataTemplate = CurrentContentPresenter.ContentTemplate; Label VideoTitle = (Label)CurrentDataTemplate.findname("VideoTitleLabel",CurrentContentPresenter); string VideoTitleText = VideoTitle.Content.ToString(); MessageBox.Show(VideoTitleText); } 总是返回标签之一(FindVisualChild),而不是返回当前活动项目的VideoTitleLabelContentPresenter为空,我无法从中获取任何UI元素。

iCMS 回答:FindVisualChild-在ItemsControl中获取命名UI元素的属性

FindVisualChild<ContentPresenter>返回一个Label实例是不可能的。 FindVisualChild将结果强制转换为ContentPresenter。由于Label不是ContentPresenter,因此会抛出InvalidCastException。但在此之前,如果child is childItem的类型为false并且通用参数类型child的类型为LabelchildItem将返回ContentPresenter因此会返回潜在的null

短版

仅访问DataTemplate或查找控件以获取其绑定数据总是太复杂了。直接访问数据源总是更容易。
ItemsControl.SelectedItem将返回所选项目的数据模型。您通常对容器不感兴趣。

private void VideoComboBox_SelectionChanged(object sender,SelectionChangedEventArgs e)
{
  var listView = sender as ListView;
  var item = listView.SelectedItem as VideoMetadataDisplay;
  MessageBox.Show(item.VideoTitleText);
}

您的版本(改进了FindVisualChild

FindVisualChild的实现较弱。如果遍历遇到没有子节点的子节点,即参数objnull,它将失败并引发异常。您必须在调用obj之前检查null的参数VisualTreeHelper.GetChildrenCount(obj),以避免引用null

此外,您无需通过访问模板来搜索元素。您可以直接在视觉树中查找它。
我已修改您的FindVisualChild方法以按名称搜索元素。为了方便起见,我也将其转换为扩展方法:

扩展方法

public static class Utils
{
  public static bool TryFindVisualChildByName<TChild>(
    this DependencyObject parent,string childElementName,out TChild childElement,bool isCaseSensitive = false)
    where TChild : FrameworkElement
  {       
    childElement = null;

    // Popup.Child content is not part of the visual tree.
    // To prevent traversal from breaking when parent is a Popup,// we need to explicitly extract the content.
    if (parent is Popup popup)
    {
      parent = popup.Child;
    }

    if (parent == null)
    {
      return false;
    }

    var stringComparison = isCaseSensitive 
      ? StringComparison.Ordinal
      : StringComparison.OrdinalIgnoreCase;

    for (int i = 0; i < VisualTreeHelper.GetChildrenCount(parent); i++)
    {
      DependencyObject child = VisualTreeHelper.GetChild(parent,i);
      if (child is TChild resultElement 
        && resultElement.Name.Equals(childElementName,stringComparison))
      {
        childElement = resultElement;
        return true;
      }

      if (child.TryFindVisualChildByName(childElementName,out childElement))
      {
        return true;
      }
    }

    return false;
  }
}

示例

private void VideoComboBox_SelectionChanged(object sender,SelectionChangedEventArgs e)
{
  var listView = sender as ListView;
  object item = listView.SelectedItem;
  var itemContainer = listView.ItemContainerGenerator.ContainerFromItem(item) as ListViewItem;

  if (itemContainer.TryFindVisualChildByName("VideoTitleLabel",out Label label))
  {
    var videoTitleText = label.Content as string;
    MessageBox.Show(videoTitleText);
  }
}
本文链接:https://www.f2er.com/2235369.html

大家都在问