7 references to LineRightCommand
PresentationFramework (7)
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (4)
534
else if (args.Command == ScrollBar.
LineRightCommand
)
715
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
LineRightCommand
, onScrollCommand, onQueryScrollCommand, Key.Right);
878
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_ScrollRight, "ScrollRight", ScrollBar.
LineRightCommand
));
897
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_ScrollLeft, "ScrollLeft", ScrollBar.
LineRightCommand
));
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
2553
else if (args.Command == ScrollBar.
LineRightCommand
)
2677
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
LineRightCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);
src\Framework\System\Windows\Input\Command\CommandConverter.cs (1)
792
return ScrollBar.
LineRightCommand
;