123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- using System;
- using System.Linq;
- using System.Collections.Generic;
- using System.Windows;
- using System.Windows.Media;
- namespace LinqToVisualTree
- {
- /// <summary>
- /// Adapts a DependencyObject to provide methods required for generate
- /// a Linq To Tree API
- /// </summary>
- public class VisualTreeAdapter : ILinqTree<DependencyObject>
- {
- private DependencyObject _item;
- public VisualTreeAdapter(DependencyObject item)
- {
- _item = item;
- }
- public IEnumerable<DependencyObject> Children()
- {
- int childrenCount = VisualTreeHelper.GetChildrenCount(_item);
- for (int i = 0; i < childrenCount; i++)
- {
- yield return VisualTreeHelper.GetChild(_item, i);
- }
- }
- public DependencyObject Parent
- {
- get
- {
- return VisualTreeHelper.GetParent(_item);
- }
- }
- }
- }
- namespace LinqToVisualTree
- {
- /// <summary>
- /// Defines an interface that must be implemented to generate the LinqToTree methods
- /// </summary>
- /// <typeparam name="T"></typeparam>
- public interface ILinqTree<T>
- {
- IEnumerable<T> Children();
- T Parent { get; }
- }
- public static class TreeExtensions
- {
- /// <summary>
- /// Returns a collection of descendant elements.
- /// </summary>
- public static IEnumerable<DependencyObject> Descendants(this DependencyObject item)
- {
- ILinqTree<DependencyObject> adapter = new VisualTreeAdapter(item);
- foreach (var child in adapter.Children())
- {
- yield return child;
- foreach (var grandChild in child.Descendants())
- {
- yield return grandChild;
- }
- }
- }
- /// <summary>
- /// Returns a collection containing this element and all descendant elements.
- /// </summary>
- public static IEnumerable<DependencyObject> DescendantsAndSelf(this DependencyObject item)
- {
- yield return item;
- foreach (var child in item.Descendants())
- {
- yield return child;
- }
- }
- /// <summary>
- /// Returns a collection of ancestor elements.
- /// </summary>
- public static IEnumerable<DependencyObject> Ancestors(this DependencyObject item)
- {
- ILinqTree<DependencyObject> adapter = new VisualTreeAdapter(item);
- var parent = adapter.Parent;
- while (parent != null)
- {
- yield return parent;
- adapter = new VisualTreeAdapter(parent);
- parent = adapter.Parent;
- }
- }
- /// <summary>
- /// Returns a collection containing this element and all ancestor elements.
- /// </summary>
- public static IEnumerable<DependencyObject> AncestorsAndSelf(this DependencyObject item)
- {
- yield return item;
- foreach (var ancestor in item.Ancestors())
- {
- yield return ancestor;
- }
- }
- /// <summary>
- /// Returns a collection of child elements.
- /// </summary>
- public static IEnumerable<DependencyObject> Elements(this DependencyObject item)
- {
- ILinqTree<DependencyObject> adapter = new VisualTreeAdapter(item);
- foreach (var child in adapter.Children())
- {
- yield return child;
- }
- }
- /// <summary>
- /// Returns a collection of the sibling elements before this node, in document order.
- /// </summary>
- public static IEnumerable<DependencyObject> ElementsBeforeSelf(this DependencyObject item)
- {
- if (item.Ancestors().FirstOrDefault() == null)
- yield break;
- foreach (var child in item.Ancestors().First().Elements())
- {
- if (child.Equals(item))
- break;
- yield return child;
- }
- }
- /// <summary>
- /// Returns a collection of the after elements after this node, in document order.
- /// </summary>
- public static IEnumerable<DependencyObject> ElementsAfterSelf(this DependencyObject item)
- {
- if (item.Ancestors().FirstOrDefault() == null)
- yield break;
- bool afterSelf = false;
- foreach (var child in item.Ancestors().First().Elements())
- {
- if (afterSelf)
- yield return child;
- if (child.Equals(item))
- afterSelf = true;
- }
- }
- /// <summary>
- /// Returns a collection containing this element and all child elements.
- /// </summary>
- public static IEnumerable<DependencyObject> ElementsAndSelf(this DependencyObject item)
- {
- yield return item;
- foreach (var child in item.Elements())
- {
- yield return child;
- }
- }
- /// <summary>
- /// Returns a collection of descendant elements which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> Descendants<T>(this DependencyObject item)
- {
- return item.Descendants().Where(i => i is T).Cast<DependencyObject>();
- }
- /// <summary>
- /// Returns a collection of the sibling elements before this node, in document order
- /// which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> ElementsBeforeSelf<T>(this DependencyObject item)
- {
- return item.ElementsBeforeSelf().Where(i => i is T).Cast<DependencyObject>();
- }
- /// <summary>
- /// Returns a collection of the after elements after this node, in document order
- /// which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> ElementsAfterSelf<T>(this DependencyObject item)
- {
- return item.ElementsAfterSelf().Where(i => i is T).Cast<DependencyObject>();
- }
- /// <summary>
- /// Returns a collection containing this element and all descendant elements
- /// which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> DescendantsAndSelf<T>(this DependencyObject item)
- {
- return item.DescendantsAndSelf().Where(i => i is T).Cast<DependencyObject>();
- }
- /// <summary>
- /// Returns a collection of ancestor elements which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> Ancestors<T>(this DependencyObject item)
- {
- return item.Ancestors().Where(i => i is T).Cast<DependencyObject>();
- }
- /// <summary>
- /// Returns a collection containing this element and all ancestor elements
- /// which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> AncestorsAndSelf<T>(this DependencyObject item)
- {
- return item.AncestorsAndSelf().Where(i => i is T).Cast<DependencyObject>();
- }
- /// <summary>
- /// Returns a collection of child elements which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> Elements<T>(this DependencyObject item)
- {
- return item.Elements().Where(i => i is T).Cast<DependencyObject>();
- }
- /// <summary>
- /// Returns a collection containing this element and all child elements.
- /// which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> ElementsAndSelf<T>(this DependencyObject item)
- {
- return item.ElementsAndSelf().Where(i => i is T).Cast<DependencyObject>();
- }
- }
- public static class EnumerableTreeExtensions
- {
- /// <summary>
- /// Applies the given function to each of the items in the supplied
- /// IEnumerable.
- /// </summary>
- private static IEnumerable<DependencyObject> DrillDown(this IEnumerable<DependencyObject> items,
- Func<DependencyObject, IEnumerable<DependencyObject>> function)
- {
- foreach (var item in items)
- {
- foreach (var itemChild in function(item))
- {
- yield return itemChild;
- }
- }
- }
- /// <summary>
- /// Applies the given function to each of the items in the supplied
- /// IEnumerable, which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> DrillDown<T>(this IEnumerable<DependencyObject> items,
- Func<DependencyObject, IEnumerable<DependencyObject>> function)
- where T : DependencyObject
- {
- foreach (var item in items)
- {
- foreach (var itemChild in function(item))
- {
- if (itemChild is T)
- {
- yield return (T)itemChild;
- }
- }
- }
- }
- /// <summary>
- /// Returns a collection of descendant elements.
- /// </summary>
- public static IEnumerable<DependencyObject> Descendants(this IEnumerable<DependencyObject> items)
- {
- return items.DrillDown(i => i.Descendants());
- }
- /// <summary>
- /// Returns a collection containing this element and all descendant elements.
- /// </summary>
- public static IEnumerable<DependencyObject> DescendantsAndSelf(this IEnumerable<DependencyObject> items)
- {
- return items.DrillDown(i => i.DescendantsAndSelf());
- }
- /// <summary>
- /// Returns a collection of ancestor elements.
- /// </summary>
- public static IEnumerable<DependencyObject> Ancestors(this IEnumerable<DependencyObject> items)
- {
- return items.DrillDown(i => i.Ancestors());
- }
- /// <summary>
- /// Returns a collection containing this element and all ancestor elements.
- /// </summary>
- public static IEnumerable<DependencyObject> AncestorsAndSelf(this IEnumerable<DependencyObject> items)
- {
- return items.DrillDown(i => i.AncestorsAndSelf());
- }
- /// <summary>
- /// Returns a collection of child elements.
- /// </summary>
- public static IEnumerable<DependencyObject> Elements(this IEnumerable<DependencyObject> items)
- {
- return items.DrillDown(i => i.Elements());
- }
- /// <summary>
- /// Returns a collection containing this element and all child elements.
- /// </summary>
- public static IEnumerable<DependencyObject> ElementsAndSelf(this IEnumerable<DependencyObject> items)
- {
- return items.DrillDown(i => i.ElementsAndSelf());
- }
- /// <summary>
- /// Returns a collection of descendant elements which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> Descendants<T>(this IEnumerable<DependencyObject> items)
- where T : DependencyObject
- {
- return items.DrillDown<T>(i => i.Descendants());
- }
- /// <summary>
- /// Returns a collection containing this element and all descendant elements.
- /// which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> DescendantsAndSelf<T>(this IEnumerable<DependencyObject> items)
- where T : DependencyObject
- {
- return items.DrillDown<T>(i => i.DescendantsAndSelf());
- }
- /// <summary>
- /// Returns a collection of ancestor elements which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> Ancestors<T>(this IEnumerable<DependencyObject> items)
- where T : DependencyObject
- {
- return items.DrillDown<T>(i => i.Ancestors());
- }
- /// <summary>
- /// Returns a collection containing this element and all ancestor elements.
- /// which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> AncestorsAndSelf<T>(this IEnumerable<DependencyObject> items)
- where T : DependencyObject
- {
- return items.DrillDown<T>(i => i.AncestorsAndSelf());
- }
- /// <summary>
- /// Returns a collection of child elements which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> Elements<T>(this IEnumerable<DependencyObject> items)
- where T : DependencyObject
- {
- return items.DrillDown<T>(i => i.Elements());
- }
- /// <summary>
- /// Returns a collection containing this element and all child elements.
- /// which match the given type.
- /// </summary>
- public static IEnumerable<DependencyObject> ElementsAndSelf<T>(this IEnumerable<DependencyObject> items)
- where T : DependencyObject
- {
- return items.DrillDown<T>(i => i.ElementsAndSelf());
- }
- }
- }
|