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