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;

  • 相关阅读:
    搭建Maven版SSM工程
    mac终端常用的命令
    常见的HTTP请求错误
    Go通关03:控制结构,if、for、switch逻辑语句
    Go通关14:参数传递中,值、引用及指针之间的区别
    Go通关13:究竟在什么情况下才使用指针?
    Go通关12:如何写出高效的并发模式?
    Go通关11:并发控制神器之Context深入浅出
    Go通关10:并发控制,同步原语 sync 包
    Go通关09:并发掌握,goroutine和channel声明与使用!
  • 原文地址:https://www.cnblogs.com/xiaokang088/p/1999674.html
Copyright © 2011-2022 走看看