5 references to DeferScrollToHorizontalOffsetCommand
PresentationFramework (5)
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (2)
418RoutedCommand command = (Orientation == Orientation.Horizontal) ? DeferScrollToHorizontalOffsetCommand : DeferScrollToVerticalOffsetCommand; 441command = horizontal ? DeferScrollToHorizontalOffsetCommand : DeferScrollToVerticalOffsetCommand;
src\Framework\System\Windows\Controls\ScrollViewer.cs (3)
2541if (args.Command == ScrollBar.DeferScrollToHorizontalOffsetCommand) 2652else if ((args.Command == ScrollBar.DeferScrollToHorizontalOffsetCommand) || 2692CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.DeferScrollToHorizontalOffsetCommand, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);