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