WPF查找子控件和父控件方法

Posted mqxs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF查找子控件和父控件方法相关的知识,希望对你有一定的参考价值。

一、查找某种类型的子控件,并返回一个List集合
public List<T> GetChildObjects<T>(DependencyObject obj, Type typename) where T : FrameworkElement
        {
            DependencyObject child = null;
            List<T> childList = new List<T>();

for (int i = 0; i <= VisualTreeHelper.GetChildrenCount(obj) - 1; i++)
            {
                child = VisualTreeHelper.GetChild(obj, i);

if (child is T && (((T)child).GetType() == typename))
                {
                    childList.Add((T)child);
                }
                childList.AddRange(GetChildObjects<T>(child,typename));
            }
return childList;
        }
调用:
List<Button> listButtons = GetChildObjects<Button>(parentPanel, typeof(Button));
二、通过名称查找子控件,并返回一个List集合
public List<T> GetChildObjects<T>(DependencyObject obj, string name) where T : FrameworkElement
        {
            DependencyObject child = null;
            List<T> childList = new List<T>();

for (int i = 0; i <= VisualTreeHelper.GetChildrenCount(obj) - 1; i++)
            {
                child = VisualTreeHelper.GetChild(obj, i);

if (child is T && (((T)child).GetType() == name |string.IsNullOrEmpty(name)))
                {
                    childList.Add((T)child);
                }
                childList.AddRange(GetChildObjects<T>(child,name));
            }
return childList;
        }
调用:
List<Button> listButtons = GetChildObjects<Button>(parentPanel, "button1");
三、通过名称查找某子控件:
public T GetChildObject<T>(DependencyObject obj, string name) where T : FrameworkElement
{
    DependencyObject child = null;
    T grandChild = null;

for (int i = 0; i <= VisualTreeHelper.GetChildrenCount(obj) - 1; i++)
    {
        child = VisualTreeHelper.GetChild(obj, i);

if (child is T && (((T)child).Name == name | string.IsNullOrEmpty(name)))
        {
return (T)child;
        }
else
        {
            grandChild = GetChildObject<T>(child, name);
if (grandChild != null)
return grandChild;
        }
    }
return null;
}
调用:
StackPanel sp = GetChildObject<StackPanel>(this.LayoutRoot, "spDemoPanel");
四、通过名称查找父控件
public T GetParentObject<T>(DependencyObject obj, string name) where T : FrameworkElement
{
    DependencyObject parent = VisualTreeHelper.GetParent(obj);

while (parent != null)
    {
if (parent is T && (((T)parent).Name == name | string.IsNullOrEmpty(name)))
        {
return (T)parent;
        }

        parent = VisualTreeHelper.GetParent(parent);
    }

return null;
}
调用:
Grid layoutGrid = VTHelper.GetParentObject<Grid>(this.spDemoPanel, "LayoutRoot"); 

原文地址:https://www.cnblogs.com/udoless/p/3381411.html











以上是关于WPF查找子控件和父控件方法的主要内容,如果未能解决你的问题,请参考以下文章

WPF 查找ListBox等DataTemplate下的子控件

WPF 查找控件的所有子控件

wpf 怎么获取StackPanel 中控件的位置。

WPF。查找绑定到特定属性的控件

c#的winform,怎么根据控件的名字获取控件属性!

C#,WPF,treeview,我用了selected函数,为何每次点击子节点时,它会同时响应子节点和父节点的操作呢