17 references to TreeWalkPriority
PresentationFramework (17)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (2)
510PrePostDescendentsWalker<ProcessingTreeState> walker = new PrePostDescendentsWalker<ProcessingTreeState>(TreeWalkPriority.VisualTree, PreVisit, PostVisit, data); 1039PrePostDescendentsWalker<ResolvingLocatorState> walker = new PrePostDescendentsWalker<ResolvingLocatorState>(TreeWalkPriority.VisualTree, ResolveLocatorPart, TerminateResolve, data);
MS\Internal\PrePostDescendentsWalker.cs (2)
37public PrePostDescendentsWalker(TreeWalkPriority priority, VisitedCallback<T> preCallback, VisitedCallback<T> postCallback, T data) : 74_postCallback(startNode, this.Data, _priority == TreeWalkPriority.VisualTree);
System\Windows\Annotations\AnnotationService.cs (2)
1059DescendentsWalker<Object> walker = new DescendentsWalker<Object>(TreeWalkPriority.VisualTree, VerifyNoServiceOnNode, null); 1180DescendentsWalker<List<IAttachedAnnotation>> walker = new DescendentsWalker<List<IAttachedAnnotation>>(TreeWalkPriority.VisualTree, GetAttachedAnnotationsFor, result);
System\Windows\BroadcastEventHelper.cs (1)
260TreeWalkPriority.VisualTree, BroadcastDelegate, new BroadcastEventData(root, routedEvent, eventRoute));
System\Windows\DescendentsWalker.cs (5)
20public DescendentsWalker(TreeWalkPriority priority, VisitedCallback<T> callback) : 26public DescendentsWalker(TreeWalkPriority priority, VisitedCallback<T> callback, T data) 58continueWalk = _callback(_startNode, _data, _priority == TreeWalkPriority.VisualTree); 84if (_priority == TreeWalkPriority.VisualTree) 88else if (_priority == TreeWalkPriority.LogicalTree)
System\Windows\DescendentsWalkerBase.cs (2)
19protected DescendentsWalkerBase(TreeWalkPriority priority) 67internal TreeWalkPriority _priority;
System\Windows\TreeWalkHelper.cs (3)
126TreeWalkPriority.LogicalTree, TreeChangeDelegate, TreeChangePostDelegate, parentInfo); 486TreeWalkPriority.LogicalTree, ResourcesChangeDelegate, info); 923TreeWalkPriority.LogicalTree, InheritablePropertyChangeDelegate, info);