码迷,mamicode.com
首页 > 其他好文 > 详细

根据Frame.Content获取Frame

时间:2014-09-18 08:34:23      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   for   div   sp   

public static T GetParent<T>(DependencyObject child) where T : DependencyObject
        {
            DependencyObject dependencyObject = VisualTreeHelper.GetParent(child);
            if (dependencyObject != null)
            {
                T parent = dependencyObject as T;
                if (parent != null)
                {
                    return parent;
                }
                else
                {
                    return GetParent <T>(dependencyObject);
                }
            }
            else
            {
                return null;
            }
        }

链接

根据Frame.Content获取Frame

标签:style   blog   http   color   os   ar   for   div   sp   

原文地址:http://www.cnblogs.com/cg2019/p/3978470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!