7 references to PageLeftCommand
PresentationFramework (7)
System\Windows\Controls\Primitives\ScrollBar.cs (4)
533
else if (args.Command == ScrollBar.
PageLeftCommand
)
711
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
PageLeftCommand
, onScrollCommand, onQueryScrollCommand);
869
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_PageLeft), "PageLeft", ScrollBar.
PageLeftCommand
));
890
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_PageRight), "PageRight", ScrollBar.
PageLeftCommand
));
System\Windows\Controls\ScrollViewer.cs (2)
2517
else if (args.Command == ScrollBar.
PageLeftCommand
)
2638
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
PageLeftCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);
System\Windows\Input\Command\CommandConverter.cs (1)
787
return ScrollBar.
PageLeftCommand
;