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)
2497
else if (args.Command == ScrollBar.
DeferScrollToVerticalOffsetCommand
)
2605
(args.Command == ScrollBar.
DeferScrollToVerticalOffsetCommand
))
2645
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
DeferScrollToVerticalOffsetCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);