5 references to DeferScrollToVerticalOffsetCommand
PresentationFramework (5)
System\Windows\Controls\Primitives\ScrollBar.cs (2)
396
RoutedCommand command = (Orientation == Orientation.Horizontal) ? DeferScrollToHorizontalOffsetCommand :
DeferScrollToVerticalOffsetCommand
;
419
command = horizontal ? DeferScrollToHorizontalOffsetCommand :
DeferScrollToVerticalOffsetCommand
;
System\Windows\Controls\ScrollViewer.cs (3)
2494
else if (args.Command == ScrollBar.
DeferScrollToVerticalOffsetCommand
)
2602
(args.Command == ScrollBar.
DeferScrollToVerticalOffsetCommand
))
2642
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
DeferScrollToVerticalOffsetCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);