Найти логического потомка, включая скрытые и свернутые узлы

Я пытался найти ответ на эту проблему, и в каждом сообщении, которое я нахожу, есть ответ на рекурсивный поиск детей, но ни один из них не работает со скрытыми или свернутыми детьми.

Также в каждом посте кто-то спрашивал, возможно ли это, но никто не ответил, поэтому я начинаю думать, что это невозможно

Если у кого-то есть способ сделать это, я буду вечно благодарен.

Моя функция выглядит так:

        public static DependencyObject FindLogicalDescendentByName(this DependencyObject source, string name)
    {
        DependencyObject result = null;
        IEnumerable children = LogicalTreeHelper.GetChildren(source);

        foreach (var child in children)
        {
            if (child is DependencyObject)
            {
                if (child is FrameworkElement)
                {
                    if ((child as FrameworkElement).Name.Equals(name))
                        result = (DependencyObject)child;
                    else
                        result = (child as DependencyObject).FindLogicalDescendentByName(name);
                }
                else
                {
                    result = (child as DependencyObject).FindLogicalDescendentByName(name);
                }
                if (result != null)
                    return result;
            }
        }
        return result;
    }

Итак, я понимаю, что моя проблема в том, что я пытался найти предмет до того, как он был создан,

Я связывался со свойством в xaml, которое могло бы отключиться и найти элемент по заданному имени, но элемент не был создан в тот момент, если я переупорядочил элемент в xaml, он работает, и элемент был найден... дох!

1 ответ

Решение

Вот мой код, он работает, если указать X: Имя и тип

Пример звонка:

System.Windows.Controls.Image myImage = FindChild<System.Windows.Controls.Image>(this (or parent), "ImageName");



/// <summary>
/// Find specific child (name and type) from parent
/// </summary>
public static T FindChild<T>(DependencyObject parent, string childName) where T : DependencyObject
{
   // Confirm parent and childName are valid. 
   if (parent == null) return null;

   T foundChild = null;

   int childrenCount = VisualTreeHelper.GetChildrenCount(parent);
   for (int i = 0; i < childrenCount; i++)
   {
      var child = VisualTreeHelper.GetChild(parent, i);
      // If the child is not of the request child type child
      T childType = child as T;
      if (childType == null)
      {
         // recursively drill down the tree
         foundChild = FindChild<T>(child, childName);

         // If the child is found, break so we do not overwrite the found child. 
         if (foundChild != null) break;
      }
      else if (!string.IsNullOrEmpty(childName))
      {
         var frameworkElement = child as FrameworkElement;
         // If the child's name is set for search
         if (frameworkElement != null && frameworkElement.Name == childName)
         {
            // if the child's name is of the request name
            foundChild = (T)child;
            break;
         }
      }
      else
      {
         // child element found.
         foundChild = (T)child;
         break;
      }
   }

     return foundChild;
  }
Другие вопросы по тегам