6 references to ScrollToLeftEndCommand
PresentationFramework (6)
System\Windows\Controls\Primitives\ScrollBar.cs (4)
541
else if (args.Command == ScrollBar.
ScrollToLeftEndCommand
)
713
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
ScrollToLeftEndCommand
, onScrollCommand, onQueryScrollCommand, Key.Home);
866
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_LeftEdge), "LeftEdge", ScrollBar.
ScrollToLeftEndCommand
));
887
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_RightEdge), "RightEdge", ScrollBar.
ScrollToLeftEndCommand
));
System\Windows\Controls\ScrollViewer.cs (2)
2551
else if (args.Command == ScrollBar.
ScrollToLeftEndCommand
)
2644
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
ScrollToLeftEndCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);