WPF中TreeView.BringIntoView方法的替代方案

                             WPF中TreeView.BringIntoView方法的替代方案

                                       周银辉

WPF中TreeView.BringIntoView()方法并不是那么地好用,不少时候会没有效果,这里有一个替代方案,调用SelectItem()方法可以展开并呈现TreeView上指定的Item:

  public static class TreeViewHelper

    {

        /// <summary>

        /// Expands all children of a TreeView

        /// </summary>

        /// <param name="treeView">The TreeView whose children will be expanded</param>

        public static void ExpandAll(this TreeView treeView)

        {

            ExpandSubContainers(treeView);

        }

 

        /// <summary>

        /// Expands all children of a TreeView or TreeViewItem

        /// </summary>

        /// <param name="parentContainer">The TreeView or TreeViewItem containing the children to expand</param>

        private static void ExpandSubContainers(ItemsControl parentContainer)

        {

            foreach (Object item in parentContainer.Items)

            {

                TreeViewItem currentContainer = parentContainer.ItemContainerGenerator.ContainerFromItem(item) as TreeViewItem;

                if (currentContainer != null && currentContainer.Items.Count > 0)

                {

                    //expand the item

                    currentContainer.IsExpanded = true;

 

                    //if the item's children are not generated, they must be expanded

                    if (currentContainer.ItemContainerGenerator.Status != GeneratorStatus.ContainersGenerated)

                    {

                        //store the event handler in a variable so we can remove it (in the handler itself)

                        EventHandler eh = null;

                        eh = new EventHandler(delegate

                            {

                                //once the children have been generated, expand those children's children then remove the event handler

                                if (currentContainer.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated)

                                {

                                    ExpandSubContainers(currentContainer);

                                    currentContainer.ItemContainerGenerator.StatusChanged -= eh;

                                }

                            });

 

                        currentContainer.ItemContainerGenerator.StatusChanged += eh;

                    }

                    else //otherwise the children have already been generated, so we can now expand those children

                    {

                        ExpandSubContainers(currentContainer);

                    }

                }

            }

        }

 

        /// <summary>

        /// Searches a TreeView for the provided object and selects it if found

        /// </summary>

        /// <param name="treeView">The TreeView containing the item</param>

        /// <param name="item">The item to search and select</param>

        public static void SelectItem(this TreeView treeView, object item)

        {

            ExpandAndSelectItem(treeView, item);

        }

 

        /// <summary>

        /// Finds the provided object in an ItemsControl's children and selects it

        /// </summary>

        /// <param name="parentContainer">The parent container whose children will be searched for the selected item</param>

        /// <param name="itemToSelect">The item to select</param>

        /// <returns>True if the item is found and selected, false otherwise</returns>

        private static bool ExpandAndSelectItem(ItemsControl parentContainer, object itemToSelect)

        {

            //check all items at the current level

            foreach (Object item in parentContainer.Items)

            {

                TreeViewItem currentContainer = parentContainer.ItemContainerGenerator.ContainerFromItem(item) as TreeViewItem;

 

                //if the data item matches the item we want to select, set the corresponding

                //TreeViewItem IsSelected to true

                if (item == itemToSelect && currentContainer != null)

                {

                    currentContainer.IsSelected = true;

                    currentContainer.BringIntoView();

                    currentContainer.Focus();

 

                    //the item was found

                    return true;

                }

            }

 

            //if we get to this point, the selected item was not found at the current level, so we must check the children

            foreach (Object item in parentContainer.Items)

            {

                TreeViewItem currentContainer = parentContainer.ItemContainerGenerator.ContainerFromItem(item) as TreeViewItem;

 

                //if children exist

                if (currentContainer != null && currentContainer.Items.Count > 0)

                {

                    //keep track of if the TreeViewItem was expanded or not

                    bool wasExpanded = currentContainer.IsExpanded;

 

                    //expand the current TreeViewItem so we can check its child TreeViewItems

                    currentContainer.IsExpanded = true;

 

                    //if the TreeViewItem child containers have not been generated, we must listen to

                    //the StatusChanged event until they are

                    if (currentContainer.ItemContainerGenerator.Status != GeneratorStatus.ContainersGenerated)

                    {

                        //store the event handler in a variable so we can remove it (in the handler itself)

                        EventHandler eh = null;

                        eh = new EventHandler(delegate

                        {

                            if (currentContainer.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated)

                            {

                                if (ExpandAndSelectItem(currentContainer, itemToSelect) == false)

                                {

                                    //The assumption is that code executing in this EventHandler is the result of the parent not

                                    //being expanded since the containers were not generated.

                                    //since the itemToSelect was not found in the children, collapse the parent since it was previously collapsed

                                    currentContainer.IsExpanded = false;

                                }

 

                                //remove the StatusChanged event handler since we just handled it (we only needed it once)

                                currentContainer.ItemContainerGenerator.StatusChanged -= eh;

                            }

                        });

                        currentContainer.ItemContainerGenerator.StatusChanged += eh;

                    }

                    else //otherwise the containers have been generated, so look for item to select in the children

                    {

                        if (ExpandAndSelectItem(currentContainer, itemToSelect) == false)

                        {

                            //restore the current TreeViewItem's expanded state

                            currentContainer.IsExpanded = wasExpanded;

                        }

                        else //otherwise the node was found and selected, so return true

                        {

                            return true;

                        }

                    }

                }

            }

 

            //no item was found

            return false;

        }

    }

 

转载于:https://www.cnblogs.com/zhouyinhui/archive/2008/12/22/1360033.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/300148.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C# WPF MVVM项目实战(进阶①)

这篇文章还是在之前用Caliburn.Micro搭建好的框架上继续做的开发&#xff0c;今天主要是增加了一个用户窗体TestFormView&#xff0c;然后通过TabControl&#xff0c;将新增的窗体加载到主界面上进行分页显示&#xff0c;新增的页面引用了WPF UI&#xff1a;WPF Datagrid合并表…

双十一变身大型奥数竞赛现场?数学不好的你请转场

当微信又被淘宝“助力”刷屏&#xff0c;我们开始意识到它来了&#xff0c;它真的来了它今天真的来了&#xff01;令人闻风丧胆的双十一又双叒叕要到了&#xff01;从最开始的光棍节变成现在的购物节每年双十一的优惠难度堪比南孚电池一节更比一节强小木&#xff1a;阿里&#…

android菜单和对话栏,Android回顾--(十一) 菜单和对话框

选择菜单(OptionsMenu)第一种使用方式&#xff1a;在res目录下面建立一个名称是menu的文件夹在menu下面建立一个xml文件(默认就是menu的类型)在建立的这个xml文件夹中添加菜单的选项&#xff0c;xml文件中有很多属性android:orderInCategory "2" //表示当前的item在…

树莓派:3安装NodeJS

上一节记录有mysql的安装&#xff0c;这一节就主要记录nodejs的安装&#xff0c;最开始的时候我是想直接使用命令直接安装&#xff0c;如&#xff1a; sudo apt-get install nodejs结果发现安装不了&#xff0c;好像是数据源有问题。既然这样不行那么我就自己编译吧&#xff0c…

Exchange Server 2003邮件服务器系统的基本部署思路

<?xml:namespace prefix st1 ns "urn:schemas-microsoft-com:office:smarttags" />以下内容摘自笔者编著的《网管员必读——网络应用》&#xff08;第2版&#xff09;一书&#xff1a; 6.1.4 Exchange Server 2003邮件服务器系统的基本部署思路<?xml:n…

css两栏式布局示例

请先看图,这里主要用到了float属性,该属性的值指出了对象是否及如何浮动 语法&#xff1a; float : none | left |right 参数&#xff1a; none :  对象不浮动;left :  对象浮在左边;right :  对象浮在右边 请看代码,请CSS高手指教,其他还可以用position来实现两栏,只…

HttpClient 禁用自动重定向

HttpClient 禁用自动重定向Intro前段时间写了一个小工具来帮助我们简化一个每个月一次的小任务&#xff0c;每个月我们公司的 BI Team 会给我们上个月访问量比较高的博客文章的 url&#xff0c;然后我们会根据 BI 提供博客的 url 去找到对应的博客 id&#xff0c;然后更新到配置…

OpenAI“单手解魔方”被公开质疑,Gary Marcus称七大问题涉嫌误导

全世界只有3.14 % 的人关注了青少年数学之旅近日&#xff0c;“OpenAI的机器手在4分钟内单手成功还原魔方”引起刷屏&#xff0c;然而&#xff0c;这一成就被著名机器学习怀疑论者马库斯质疑了&#xff0c;马库斯逐条列举OpenAI的误导性说法&#xff0c;机器学习圈却都撑OpenAI…

android 带弧形背景,[Android日常]绘制弧形渐变背景

最近要修改用户空间头部信息显示&#xff0c;参考了好多APP的用户空间&#xff0c;都有一个弧形的背景&#xff0c;看着挺漂亮的。实现这种效果&#xff0c;有两种实现方式&#xff1a;1、作图&#xff1b;2、通过代码进行绘制。今天就讲讲如何通过canvas进行绘制。一、用到的知…

超强的绕口令

今天看到这样一个绕口令&#xff0c;自己读了半天&#xff0c;越读错的越多&#xff0c;呵呵&#xff0c;贴出来大家一起来玩玩1、初入江湖&#xff1a;化肥会挥发 2、小有名气&#xff1a;黑化肥发灰&#xff0c;灰化肥发黑 3、名动一方&#xff1a;黑化肥发灰会挥发&…

世界顶级精英们的人生哲学 【转】

1.别为你自己和别人下定论&#xff0c;你所看到听到的可能只是一面&#xff0c;为这个失去可能的朋友&#xff0c;很不值。 2.你可以有喝醉的时候&#xff0c;我们可以接受&#xff0c;但是你要明白和真正的朋友一醉才能让伤心事方休&#xff0c;否则&#xff0c;你只会是别人的…

记一次 .NET 某云采购平台API 挂死分析

一&#xff1a;背景 1. 讲故事大概有两个月没写博客了&#xff0c;关注我的朋友应该知道我最近都把精力花在了星球&#xff0c;这两个月时间也陆陆续续的有朋友求助如何分析dump&#xff0c;有些朋友太客气了&#xff0c;给了大大的红包&#xff0c;哈哈????&#xff0c;手…

来自女朋友的灵魂拷问!| 今日最佳

全世界只有3.14 % 的人关注了青少年数学之旅【1】【2】【3】【4】【5】【6】【7】【8】【9】

android 栏目编辑,android – 编辑文本导致内存泄漏

介绍&#xff1a;我有一个应用程序具有以下结构&#xff1a;ActionBar顶部(ActionBarSherlock)ViewPagerIndicator下面(对于选项卡)ViewPager(主机片段)我有一个问题,我的一个碎片导致了相当大的内存泄漏.我将问题缩小到以下情况&#xff1a;导致泄漏的片段只会在其onCreateVie…

Spring 事物传播特性

Spring 事物传播特性 这是Spring官方的定义 一共有7种 摘自源码省略了一部分 public interface TransactionDefinition {int PROPAGATION_REQUIRED 0;int PROPAGATION_SUPPORTS 1;int PROPAGATION_MANDATORY 2;int PROPAGATION_REQUIRES_NEW 3;int PROPAGATION_NOT_SUPPORT…

6月,回忆我失去的爱情

6月&#xff0c;夏天早已到来 自4月起&#xff0c;我一直放荡着。这个我在上个文章里已提到&#xff0c;哈哈 放荡两个月后&#xff0c;我回想我自己的爱情 我想明白为什么我会失去自己的爱情&#xff0c;哈哈 终于明白了是为什么&#xff0c;其实失去的这样的简单 我承认我有错…

《你必须知道的.NET》第1章学习笔记

面向对象中几个最基本的概念&#xff1a;类&#xff0c;对象&#xff0c;继承&#xff0c;封装和多态。 对象的出生&#xff0c;只是完成了对必要字段的初始化&#xff0c;其他数据要通过后面的操作来完成&#xff0c;如&#xff1a;属性的赋值&#xff0c;通过方法获取必要信息…

利用 PGO 提升 .NET 程序性能

引子.NET 6 开始初步引入 PGO。PGO 即 Profile Guided Optimization&#xff0c;通过收集运行时信息来指导 JIT 如何优化代码&#xff0c;相比以前没有 PGO 时可以做更多以前难以完成的优化。下面我们用 .NET 6 的 nightly build 版本 6.0.100-rc.1.21377.6 来试试新的 PGO。PG…

不作死就不会死,盘点那些死于自己发明的发明家

全世界只有3.14 %的人关注了青少年数学之旅还有他们死于自己的发明发明呼吸器&#xff1a;缺氧死亡 1772年&#xff0c;法国人希厄尔弗莱米奈特发明了可用于潜水的循环式再呼吸器&#xff0c;让呼出的气体实现循环。这是世界上第一个自持呼吸装置。不幸的是&#xff0c;弗莱米奈…

CIO们对数据中心虚拟化心存的六大疑虑

本文摘自&#xff1a;[url]http://industry.ccidnet.com/art/3915/20070428/1072803_1.html[/url] 巴塞罗那超级计算中心 数据中心虚拟化正在势不可挡地迅猛发展&#xff0c;据IDC预测&#xff0c;到2009年&#xff0c;虚拟化市场将在全球范围内将增长150亿美元。有专家预言&am…