7 references to LineLeftCommand
PresentationFramework (7)
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (4)
530
if (args.Command == ScrollBar.
LineLeftCommand
)
714
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
LineLeftCommand
, onScrollCommand, onQueryScrollCommand, Key.Left);
877
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_ScrollLeft, "ScrollLeft", ScrollBar.
LineLeftCommand
));
898
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_ScrollRight, "ScrollRight", ScrollBar.
LineLeftCommand
));
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
2549
else if (args.Command == ScrollBar.
LineLeftCommand
)
2676
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
LineLeftCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);
src\Framework\System\Windows\Input\Command\CommandConverter.cs (1)
789
return ScrollBar.
LineLeftCommand
;