5 references to DeferScrollToVerticalOffsetCommand
PresentationFramework (5)
System\Windows\Controls\Primitives\ScrollBar.cs (2)
413
RoutedCommand command = (Orientation == Orientation.Horizontal) ? DeferScrollToHorizontalOffsetCommand :
DeferScrollToVerticalOffsetCommand
;
436
command = horizontal ? DeferScrollToHorizontalOffsetCommand :
DeferScrollToVerticalOffsetCommand
;
System\Windows\Controls\ScrollViewer.cs (3)
2505
else if (args.Command == ScrollBar.
DeferScrollToVerticalOffsetCommand
)
2613
(args.Command == ScrollBar.
DeferScrollToVerticalOffsetCommand
))
2653
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
DeferScrollToVerticalOffsetCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);