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