WP7中的DependencyObject和DependencyProperty

这两个概念一直困扰了我很长时间,在下面这个方法中的应用我一直不太懂,今天的一篇博客给了我或多或少的启发

博客来源http://www.devdiv.com/article-1834-1.html 

  private T Find<T> (DependencyObject root) where T : class
        {
            var queue = new Queue<DependencyObject>();
            queue.Enqueue(root);
            while(queue.Count > 0)
            {
                DependencyObject current = queue.Dequeue();
                for (int i = VisualTreeHelper.GetChildrenCount(current) - 1; i >= 0; i--)
                {
                    var child = VisualTreeHelper.GetChild(current, i);
                    var typedChild = child as T;
                    if (typedChild != null)
                    {
                        return typedChild;
                    }
                    queue.Enqueue(child);
                }
            }
            return null;

        } 

现在对该方法有了浅层的了解,但是还是不深刻,有些地方的自我解释还是说服不了自己,现在稍作记录,改日再详细分析。。。。。

 

转载于:https://www.cnblogs.com/zhangran/archive/2012/04/04/2432074.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值