6 references to ScrollToRightEndCommand
PresentationFramework (6)
System\Windows\Controls\Primitives\ScrollBar.cs (4)
545
else if (args.Command == ScrollBar.
ScrollToRightEndCommand
)
714
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
ScrollToRightEndCommand
, onScrollCommand, onQueryScrollCommand, Key.End);
867
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_RightEdge), "RightEdge", ScrollBar.
ScrollToRightEndCommand
));
886
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(nameof(SR.ScrollBar_ContextMenu_LeftEdge), "LeftEdge", ScrollBar.
ScrollToRightEndCommand
));
System\Windows\Controls\ScrollViewer.cs (2)
2555
else if (args.Command == ScrollBar.
ScrollToRightEndCommand
)
2645
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
ScrollToRightEndCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);