5 references to DeferScrollToVerticalOffsetCommand
PresentationFramework (5)
System\Windows\Controls\Primitives\ScrollBar.cs (2)
397
RoutedCommand command = (Orientation == Orientation.Horizontal) ? DeferScrollToHorizontalOffsetCommand :
DeferScrollToVerticalOffsetCommand
;
420
command = horizontal ? DeferScrollToHorizontalOffsetCommand :
DeferScrollToVerticalOffsetCommand
;
System\Windows\Controls\ScrollViewer.cs (3)
2495
else if (args.Command == ScrollBar.
DeferScrollToVerticalOffsetCommand
)
2603
(args.Command == ScrollBar.
DeferScrollToVerticalOffsetCommand
))
2643
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
DeferScrollToVerticalOffsetCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);