7 references to LineRightCommand
PresentationFramework (7)
System\Windows\Controls\Primitives\ScrollBar.cs (4)
529
else if (args.Command == ScrollBar.
LineRightCommand
)
710
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
LineRightCommand
, onScrollCommand, onQueryScrollCommand, Key.Right);
873
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_ScrollRight), "ScrollRight", ScrollBar.
LineRightCommand
));
892
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_ScrollLeft), "ScrollLeft", ScrollBar.
LineRightCommand
));
System\Windows\Controls\ScrollViewer.cs (2)
2513
else if (args.Command == ScrollBar.
LineRightCommand
)
2637
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
LineRightCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);
System\Windows\Input\Command\CommandConverter.cs (1)
778
return ScrollBar.
LineRightCommand
;