博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Print Visual Tree
阅读量:6239 次
发布时间:2019-06-22

本文共 374 字,大约阅读时间需要 1 分钟。

private void PrintVisialTree(int depth, DependencyObject obj)

        {

            System.Diagnostics.Debug.WriteLine(new string(' ', depth) + obj);

 

            for (int i = 0; i < VisualTreeHelper.GetChildrenCount(obj); i++)

            {

                PrintVisialTree(depth + 1, VisualTreeHelper.GetChild(obj, i));

            }

        }

 

 protected override void OnContentRendered(EventArgs e)

        {

            base.OnContentRendered(e);

            PrintVisialTree(0,this);

        }

转载地址:http://pidia.baihongyu.com/

你可能感兴趣的文章
mysql使用规范-行为规范
查看>>
python函数
查看>>
我的友情链接
查看>>
Expect的安装配置及简单测试脚本
查看>>
HBase Compact && Split
查看>>
我的友情链接
查看>>
OA系统失败之一技术缺陷
查看>>
售前工程师的成长---一个老员工的经验之谈(四)(转载)
查看>>
UIAlertView总结
查看>>
开源 java CMS - FreeCMS2.8 自定义标签 infoList
查看>>
jsp部署tomcat,集成MyEclipse
查看>>
关于symfony的serivce存在的意义
查看>>
1、SpringBoot+MybatisPlus整合
查看>>
面向sql编程
查看>>
Kubernetes之kubectl常用命令使用指南:2:故障排查
查看>>
Facebook测试新信息系统 陌生人发信收费1美元
查看>>
linux系统批量修改root用户密码
查看>>
使用python的paramiko包的RequirementParseError问题
查看>>
WdOS系统下源代码编译安装PHP(搭配nginx运行)
查看>>
SpringBoot整合Scala构建Web服务
查看>>