7 references to LineLeftCommand
PresentationFramework (7)
System\Windows\Controls\Primitives\ScrollBar.cs (4)
525
if (args.Command == ScrollBar.
LineLeftCommand
)
709
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
LineLeftCommand
, onScrollCommand, onQueryScrollCommand, Key.Left);
872
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_ScrollLeft), "ScrollLeft", ScrollBar.
LineLeftCommand
));
893
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_ScrollRight), "ScrollRight", ScrollBar.
LineLeftCommand
));
System\Windows\Controls\ScrollViewer.cs (2)
2509
else if (args.Command == ScrollBar.
LineLeftCommand
)
2636
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
LineLeftCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);
System\Windows\Input\Command\CommandConverter.cs (1)
775
return ScrollBar.
LineLeftCommand
;