7 references to PageLeftCommand
PresentationFramework (7)
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (4)
538
else if (args.Command == ScrollBar.
PageLeftCommand
)
716
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
PageLeftCommand
, onScrollCommand, onQueryScrollCommand);
874
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_PageLeft, "PageLeft", ScrollBar.
PageLeftCommand
));
895
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_PageRight, "PageRight", ScrollBar.
PageLeftCommand
));
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
2557
else if (args.Command == ScrollBar.
PageLeftCommand
)
2678
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
PageLeftCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);
src\Framework\System\Windows\Input\Command\CommandConverter.cs (1)
801
return ScrollBar.
PageLeftCommand
;