20 references to PageUp
PresentationFramework (18)
src\Framework\System\Windows\Controls\Calendar.cs (1)
1301case Key.PageUp:
src\Framework\System\Windows\Controls\ComboBox.cs (1)
1491case Key.PageUp:
src\Framework\System\Windows\Controls\DataGrid.cs (3)
5542case Key.PageUp: 6148int targetIndex = (e.Key == Key.PageUp) ? rowIndex - jumpDistance : rowIndex + jumpDistance; 6182FocusNavigationDirection direction = e.Key == Key.PageUp ? FocusNavigationDirection.Up : FocusNavigationDirection.Down;
src\Framework\System\Windows\Controls\DocumentViewer.cs (2)
1588Key.PageUp); 1699new KeyGesture(Key.PageUp, ModifierKeys.Control));
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
1363executedHandler, canExecuteHandler, Key.PageUp);
src\Framework\System\Windows\Controls\ListBox.cs (1)
480case Key.PageUp:
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (1)
709CommandHelpers.RegisterCommandHandler(typeof(ScrollBar), ScrollBar.PageUpCommand, onScrollCommand, onQueryScrollCommand, Key.PageUp);
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
1113case Key.PageUp:
src\Framework\System\Windows\Controls\SinglePageViewer.cs (1)
1282CommandManager.RegisterClassInputBinding(typeof(FlowDocumentPageViewer), new InputBinding(NavigationCommands.PreviousPage, new KeyGesture(Key.PageUp)));
src\Framework\System\Windows\Controls\Slider.cs (2)
150new SliderGesture(Key.PageUp, Key.PageDown, false)); 153new SliderGesture(Key.PageDown, Key.PageUp, false));
src\Framework\System\Windows\Controls\TreeView.cs (4)
528case Key.PageUp: 563case Key.PageUp: 675case Key.PageUp: 721(e.Key == Key.PageUp ? FocusNavigationDirection.Up : FocusNavigationDirection.Down),
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Selection\PropertySelection.cs (1)
402e.Key == Key.PageUp || e.Key == Key.PageDown || e.Key == Key.Home || e.Key == Key.End || e.Key == Key.LeftCtrl || e.Key == Key.RightCtrl)
WindowsBase (1)
Base\System\Windows\Input\KeyConverter.cs (1)
176case "PGUP": keyFound = Key.PageUp; break;