7 references to Next
System.Activities.Presentation (7)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CategoryList.cs (2)
667element = PropertySelection.FindNeighborSelectionStop<UIElement>(this, SearchDirection.Next); 788SearchDirection direction = e.Key == Key.Up || e.Key == Key.Left ? SearchDirection.Previous : SearchDirection.Next;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Selection\CategoryContainerSelectionPathInterpreter.cs (1)
98return PropertySelection.FindNeighborSelectionStop<DependencyObject>(searchStart, SearchDirection.Next);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Selection\PropertySelection.cs (4)
500if (direction == SearchDirection.Next && IsExpanded(element)) 532if (direction == SearchDirection.Next && (childIndex + 1) >= childrenCount) 626int step = iterationDirection == SearchDirection.Next ? 1 : -1; 627int index = iterationDirection == SearchDirection.Next ? leftIndex : rightIndex;