Exemplo n.º 1
0
 public static IEnumerable <DependencyObject> GetLogicalAncestorsAndSelf(this DependencyObject depObj)
 {
     return(PresentationTreeUtils.GetLogicalAncestors(depObj, true));
 }
Exemplo n.º 2
0
 public static IEnumerable <T> GetLogicalAncestorsAndSelf <T>(this DependencyObject depObj) where T : DependencyObject
 {
     return(PresentationTreeUtils.GetLogicalAncestors(depObj, true).OfType <T>());
 }