WPF 查找控件的所有子控件

2021-04-12 08:25

阅读:342

标签:where   summary   void   public   etc   oid   efault   help   列表   

        /// 
        /// 查找子控件
        /// 
        /// 控件类型
        /// 父控件依赖对象
        /// 子控件列表
        public static void FindVisualChild(DependencyObject parent, ref List lstT) where T : DependencyObject
        {
            if (parent != null)
            {
                T child = default(T);
                int numVisuals = VisualTreeHelper.GetChildrenCount(parent);
                for (int i = 0; i )
                {
                    Visual v = (Visual)VisualTreeHelper.GetChild(parent, i);
                    child = v as T;
                    if (child != null)
                    {
                        lstT.Add(child);
                    }
                    FindVisualChild(v, ref lstT);
                }
            }
        }

在DataGrid中查找选定行中的子控件使用实例:

        private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            DataGridRow currentRow = (DataGridRow)dgdRel.ItemContainerGenerator.ContainerFromIndex(dgdRel.SelectedIndex);   //获取当前行
            if (currentRow != null)
            {
                List lstControl = new List();
                FormDispose.FindVisualChild(currentRow, ref lstControl);  //获取当前行内所有的控件
                if (lstControl != null)
                {
                   //子控件的处理代码
                }
            }
        }

 

WPF 查找控件的所有子控件

标签:where   summary   void   public   etc   oid   efault   help   列表   

原文地址:https://www.cnblogs.com/yilinyangyu/p/9012748.html


评论


亲,登录后才可以留言!