zoukankan      html  css  js  c++  java
  • 查找子控件和父控件方法

    一、查找某种类型的子控件,并返回一个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;
            }
        }
    returnnull;
    }

    调用:

    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);
        }

    returnnull;
    }

    调用:

    Grid layoutGrid = VTHelper.GetParentObject<Grid>(this.spDemoPanel, "LayoutRoot");

  • 相关阅读:
    Oracle Redo 并行机制
    ORA16032 Can not Start Instance via srvctl but via sqlplus is fine [ID 1062071.1]
    Linux 各文件夹的作用
    Private strand flush not complete 说明
    Executing root.sh errors with "Failed To Upgrade Oracle Cluster Registry Configuration" [ID 466673.1]
    openfiler 搭建虚拟存储 并 配置服务端
    Oracle RAC CRS0184 Cannot communicate with the CRS daemon
    Redhat 5.4 RAC multipath 配置raw,运行root.sh 时报错Failed to upgrade Oracle Cluster Registry configuration 解决方法
    Openfiler + Redhat 5.4 Oracle 11gR2 RAC 安装文档
    How to Troubleshoot Grid Infrastructure Startup Issues [ID 1050908.1]
  • 原文地址:https://www.cnblogs.com/lyl6796910/p/4672738.html
Copyright © 2011-2022 走看看