6 references to ScrollToRightEndCommand
PresentationFramework (6)
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (4)
550
else if (args.Command == ScrollBar.
ScrollToRightEndCommand
)
719
CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.
ScrollToRightEndCommand
, onScrollCommand, onQueryScrollCommand, Key.End);
872
horizontalContextMenuLeftToRight.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_RightEdge, "RightEdge", ScrollBar.
ScrollToRightEndCommand
));
891
horizontalContextMenuRightToLeft.Items.Add(CreateMenuItem(SRID.ScrollBar_ContextMenu_LeftEdge, "LeftEdge", ScrollBar.
ScrollToRightEndCommand
));
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
2595
else if (args.Command == ScrollBar.
ScrollToRightEndCommand
)
2685
CommandHelpers.RegisterCommandHandler(typeof(ScrollViewer), ScrollBar.
ScrollToRightEndCommand
, executeScrollCommandEventHandler, canExecuteScrollCommandEventHandler);