17 references to TreeWalkPriority
PresentationFramework (17)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (2)
521PrePostDescendentsWalker<ProcessingTreeState> walker = new PrePostDescendentsWalker<ProcessingTreeState>(TreeWalkPriority.VisualTree, PreVisit, PostVisit, data); 1050PrePostDescendentsWalker<ResolvingLocatorState> walker = new PrePostDescendentsWalker<ResolvingLocatorState>(TreeWalkPriority.VisualTree, ResolveLocatorPart, TerminateResolve, data);
MS\Internal\PrePostDescendentsWalker.cs (2)
40public PrePostDescendentsWalker(TreeWalkPriority priority, VisitedCallback<T> preCallback, VisitedCallback<T> postCallback, T data) : 77_postCallback(startNode, this.Data, _priority == TreeWalkPriority.VisualTree);
System\Windows\Annotations\AnnotationService.cs (2)
1071DescendentsWalker<Object> walker = new DescendentsWalker<Object>(TreeWalkPriority.VisualTree, VerifyNoServiceOnNode, null); 1192DescendentsWalker<List<IAttachedAnnotation>> walker = new DescendentsWalker<List<IAttachedAnnotation>>(TreeWalkPriority.VisualTree, GetAttachedAnnotationsFor, result);
System\Windows\BroadcastEventHelper.cs (1)
266TreeWalkPriority.VisualTree, BroadcastDelegate, new BroadcastEventData(root, routedEvent, eventRoute));
System\Windows\DescendentsWalker.cs (5)
25public DescendentsWalker(TreeWalkPriority priority, VisitedCallback<T> callback) : 31public DescendentsWalker(TreeWalkPriority priority, VisitedCallback<T> callback, T data) 63continueWalk = _callback(_startNode, _data, _priority == TreeWalkPriority.VisualTree); 89if (_priority == TreeWalkPriority.VisualTree) 93else if (_priority == TreeWalkPriority.LogicalTree)
System\Windows\DescendentsWalkerBase.cs (2)
23protected DescendentsWalkerBase(TreeWalkPriority priority) 71internal TreeWalkPriority _priority;
System\Windows\TreeWalkHelper.cs (3)
130TreeWalkPriority.LogicalTree, TreeChangeDelegate, TreeChangePostDelegate, parentInfo); 479TreeWalkPriority.LogicalTree, ResourcesChangeDelegate, info); 916TreeWalkPriority.LogicalTree, InheritablePropertyChangeDelegate, info);