5 references to DeferScrollToHorizontalOffsetCommand
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)
2501
if (args.Command == ScrollBar.
DeferScrollToHorizontalOffsetCommand
)
2612
else if ((args.Command == ScrollBar.
DeferScrollToHorizontalOffsetCommand
) ||
2652
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
DeferScrollToHorizontalOffsetCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);