6 references to ScrollToLeftEndCommand
PresentationFramework (6)
System\Windows\Controls\Primitives\ScrollBar.cs (4)
527
else if (args.Command == ScrollBar.
ScrollToLeftEndCommand
)
699
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
ScrollToLeftEndCommand
, onScrollCommand, onQueryScrollCommand, Key.Home);
852
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_LeftEdge), "LeftEdge", ScrollBar.
ScrollToLeftEndCommand
));
873
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_RightEdge), "RightEdge", ScrollBar.
ScrollToLeftEndCommand
));
System\Windows\Controls\ScrollViewer.cs (2)
2547
else if (args.Command == ScrollBar.
ScrollToLeftEndCommand
)
2640
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
ScrollToLeftEndCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);