7 references to LineRightCommand
PresentationFramework (7)
System\Windows\Controls\Primitives\ScrollBar.cs (4)
514
else if (args.Command == ScrollBar.
LineRightCommand
)
695
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
LineRightCommand
, onScrollCommand, onQueryScrollCommand, Key.Right);
858
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_ScrollRight), "ScrollRight", ScrollBar.
LineRightCommand
));
877
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_ScrollLeft), "ScrollLeft", ScrollBar.
LineRightCommand
));
System\Windows\Controls\ScrollViewer.cs (2)
2502
else if (args.Command == ScrollBar.
LineRightCommand
)
2626
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
LineRightCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);
System\Windows\Input\Command\CommandConverter.cs (1)
772
return ScrollBar.
LineRightCommand
;