zoukankan      html  css  js  c++  java
  • When theme change,the control tree is changed.

    When use   ListView, i want to find it's child :scrollViewer.use code as bellow:

    svALlItems = (ScrollViewer)(VisualTreeHelper.GetChild(lvAllItems, 0) as Border).Child;

    when change theme from areo to non-aero ,for example as classic theme, application crash,the reason at above statement.

    Use VisualTreeHelper to see VisualTree,The method  as bellow:

            string GetVisualTreeInfo(DependencyObject target)
            {
                int i = 0;
                int childCount = 0;
                DependencyObject parentObject = target;
                DependencyObject childObject = null;
                string format = "Rank:{0}    childIndex:{1}   {2}   ";
                StringBuilder stringBuilder = new StringBuilder();
                stringBuilder.AppendLine("VisualTree:");
                while (true)
                {
                    childCount = VisualTreeHelper.GetChildrenCount(parentObject);
                    if (childCount == 0) break;
    
                    for (int j = 0; j < childCount; j++)
                    {
                        childObject = VisualTreeHelper.GetChild(parentObject, j);
                        stringBuilder.AppendLine(string.Format(format, i, j, childObject));
                    }
    
                    if (childObject == null) break;
                    parentObject = childObject;
                    i++;
                }
                Debug.WriteLine(stringBuilder.ToString());
                return stringBuilder.ToString();
            }
    

    When aero theme,visualTree is :

    Rank:0    childIndex:0   System.Windows.Controls.Border  
    Rank:1    childIndex:0   System.Windows.Controls.ScrollViewer  
    Rank:2    childIndex:0   System.Windows.Controls.Grid  
    Rank:3    childIndex:0   System.Windows.Shapes.Rectangle  
    Rank:3    childIndex:1   System.Windows.Controls.ScrollContentPresenter   
    Rank:3    childIndex:2   System.Windows.Controls.Primitives.ScrollBar Minimum:0 Maximum:0 Value:0   
    Rank:3    childIndex:3   System.Windows.Controls.Primitives.ScrollBar Minimum:0 Maximum:0 Value:0   
    

    When non-aero theme,as classic, visualTree is :

     Rank:0    childIndex:0   Microsoft.Windows.Themes.ClassicBorderDecorator    
    Rank:1    childIndex:0   System.Windows.Controls.ScrollViewer   
    Rank:2    childIndex:0   System.Windows.Controls.Grid   
    Rank:3    childIndex:0   System.Windows.Shapes.Rectangle   
    Rank:3    childIndex:1   System.Windows.Controls.ScrollContentPresenter   
    Rank:3    childIndex:2   System.Windows.Controls.Primitives.ScrollBar Minimum:0 Maximum:0 Value:0   
    Rank:3    childIndex:3   System.Windows.Controls.Primitives.ScrollBar Minimum:0 Maximum:0 Value:0   
    

    the first child is different ,so when we use VisualTreeHelper like this,plase take  care !~

    the above statement should change  as fllow:

     var svALlItems = (ScrollViewer)(VisualTreeHelper.GetChild(listView1, 0) as Decorator).Child;

  • 相关阅读:
    ActiveX控件的注册和反注册
    谷歌浏览器调用activex控件方法
    VC 中的ATL ActiveX 和 MFC ActiveX 有什么区别
    DirectX介绍(转)
    最简单的基于FFMPEG的图像编码器(YUV编码为JPEG)(转)
    统计Visual Studio项目的代码行数
    【Sqlite3】sqlite_sequence表(转)
    linuxunix系统下的字符操作
    tif
    字符串截取
  • 原文地址:https://www.cnblogs.com/xiaokang088/p/1999674.html
Copyright © 2011-2022 走看看