7 references to PageRightCommand
PresentationFramework (7)
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (4)
542
else if (args.Command == ScrollBar.
PageRightCommand
)
717
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
PageRightCommand
, onScrollCommand, onQueryScrollCommand);
875
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_PageRight, "PageRight", ScrollBar.
PageRightCommand
));
894
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_PageLeft, "PageLeft", ScrollBar.
PageRightCommand
));
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
2561
else if (args.Command == ScrollBar.
PageRightCommand
)
2679
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
PageRightCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);
src\Framework\System\Windows\Input\Command\CommandConverter.cs (1)
804
return ScrollBar.
PageRightCommand
;